| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <title>SVGStyleElement tests</title> | 2 <title>SVGStyleElement tests</title> |
| 3 <script src=../../resources/testharness.js></script> | 3 <script src=../../resources/testharness.js></script> |
| 4 <script src=../../resources/testharnessreport.js></script> | 4 <script src=../../resources/testharnessreport.js></script> |
| 5 <div id="testcontainer"> | 5 <div id="testcontainer"> |
| 6 <svg width="1" height="1" visibility="hidden"> | 6 <svg width="1" height="1" visibility="hidden"> |
| 7 <defs><style>.test { fill: green; }</style></defs> | 7 <defs><style>.test { fill: green; }</style></defs> |
| 8 </svg> | 8 </svg> |
| 9 </div> | 9 </div> |
| 10 <div id=log></div> | 10 <div id=log></div> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 test(function() { | 26 test(function() { |
| 27 assert_equals(document.styleSheets[0].ownerNode, style); | 27 assert_equals(document.styleSheets[0].ownerNode, style); |
| 28 }, "sheet has correct ownerNode #1"); | 28 }, "sheet has correct ownerNode #1"); |
| 29 | 29 |
| 30 test(function() { | 30 test(function() { |
| 31 assert_equals(style.sheet.ownerNode, style); | 31 assert_equals(style.sheet.ownerNode, style); |
| 32 }, "sheet has correct ownerNode #2"); | 32 }, "sheet has correct ownerNode #2"); |
| 33 | 33 |
| 34 </script> | 34 </script> |
| OLD | NEW |