Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!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.
| |
| 2 <title>SVGGeometryElement</title> | |
| 3 <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.
| |
| 4 <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.
| |
| 5 <script> | |
| 6 var rect = document.querySelector('rect'); | |
| 7 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.
| |
| 8 shouldThrow("rect.isPointInFill(undefined)"); | |
| 9 shouldThrow("rect.isPointInStroke(null)"); | |
| 10 shouldThrow("rect.isPointInStroke(undefined)"); | |
| 11 </script> | |
| OLD | NEW |