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> |