OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/testharness.js"></script> | 2 <script src="../../resources/testharness.js"></script> |
3 <script src="../../resources/testharnessreport.js"></script> | 3 <script src="../../resources/testharnessreport.js"></script> |
4 | 4 |
5 <script> | 5 <script> |
6 test(function() { | 6 test(function() { |
7 var cssText = 'div { background-image: url(images.jpg); }'; | 7 var cssText = 'div { background-image: url("images.jpg"); }'; |
8 | 8 |
9 var doc = document.implementation.createHTMLDocument(""); | 9 var doc = document.implementation.createHTMLDocument(""); |
10 var styleElement = document.createElement("style"); | 10 var styleElement = document.createElement("style"); |
11 styleElement.textContent = cssText; | 11 styleElement.textContent = cssText; |
12 doc.body.appendChild(styleElement); | 12 doc.body.appendChild(styleElement); |
13 var cssRules = styleElement.sheet.cssRules; | 13 var cssRules = styleElement.sheet.cssRules; |
14 | 14 |
15 assert_equals(cssRules.length, 1); | 15 assert_equals(cssRules.length, 1); |
16 var compareCSSText = cssRules[0].cssText; | 16 var compareCSSText = cssRules[0].cssText; |
17 | 17 |
18 assert_equals(compareCSSText, cssText); | 18 assert_equals(compareCSSText, cssText); |
19 }, 'Testing serialization and round trip of URLs in CSS'); | 19 }, 'Testing serialization and round trip of URLs in CSS'); |
20 </script> | 20 </script> |
OLD | NEW |