Chromium Code Reviews

Unified Diff: LayoutTests/svg/dom/SVGGeometryElement.html

Issue 144463014: Add [StrictTypeChecking] to the SVGGeometryElement interface (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: LayoutTests/svg/dom/SVGGeometryElement.html
diff --git a/LayoutTests/svg/dom/SVGGeometryElement.html b/LayoutTests/svg/dom/SVGGeometryElement.html
new file mode 100644
index 0000000000000000000000000000000000000000..f5a799d0bc2c99192608038d0ef26d0b3422eb0e
--- /dev/null
+++ b/LayoutTests/svg/dom/SVGGeometryElement.html
@@ -0,0 +1,11 @@
+<!doctype html>
Nils Barth (inactive) 2014/02/12 03:29:51 Style notes: http://www.w3.org/TR/html5/syntax.htm
fs 2014/02/12 10:07:27 Done.
+<title>SVGGeometryElement</title>
+<svg><rect/></svg>
Nils Barth (inactive) 2014/02/12 03:29:51 <rect></rect> not <rect/> (no self-closing tags in
fs 2014/02/12 10:07:27 Done.
+<script src=../../resources/js-test.js></script>
Nils Barth (inactive) 2014/02/12 03:29:51 We conventionally quote this, with double quotes.
fs 2014/02/12 10:07:27 Done.
+<script>
+var rect = document.querySelector('rect');
+shouldThrow("rect.isPointInFill(null)");
Nils Barth (inactive) 2014/02/12 03:29:51 Single quotes in JavaScript.
fs 2014/02/12 10:07:27 Done.
+shouldThrow("rect.isPointInFill(undefined)");
+shouldThrow("rect.isPointInStroke(null)");
+shouldThrow("rect.isPointInStroke(undefined)");
+</script>
« no previous file with comments | « no previous file | LayoutTests/svg/dom/SVGGeometryElement-expected.txt » ('j') | Source/bindings/scripts/code_generator_v8.pm » ('J')

Powered by Google App Engine