summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/canvas/strokeText-missing-args.html
blob: 1bd20c726237a07afc14de2a53295dda37bda181 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html>
<body>
<script>
  if (window.testRunner)
      testRunner.dumpAsText();
  try {
    document.createElement('canvas').getContext('2d').strokeText();
  } catch (err) {
    // An exception may be thrown if arguments to strokeText are missing, ignore
    // it.
  }
</script>
SUCCESS: This test should not time out.
</body>
</html>