OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <script src="../../../resources/js-test.js"></script> | 5 <script src="../../../resources/js-test.js"></script> |
6 </head> | 6 </head> |
7 <body> | 7 <body> |
8 <script> | 8 <script> |
9 | 9 |
10 description("Test to make sure outline-offset is found in the computed style.") | 10 description("Test to make sure outline-offset is found in the computed style.") |
11 | 11 |
12 var testContainer = document.createElement("div"); | 12 var testContainer = document.createElement("div"); |
13 document.body.appendChild(testContainer); | 13 document.body.appendChild(testContainer); |
14 | 14 |
15 testContainer.innerHTML = '<div id="test" style="outline: 2px solid black">hello
</div>'; | 15 testContainer.innerHTML = '<div id="test" style="outline: 2px solid black">hello
</div>'; |
16 | 16 |
17 e = document.getElementById('test'); | 17 e = document.getElementById('test'); |
18 e.contentEditable = true; | 18 e.contentEditable = true; |
19 | 19 |
20 e.style.outlineOffset = "2px"; | 20 e.style.outlineOffset = "2px"; |
21 computedStyle = window.getComputedStyle(e); | 21 computedStyle = window.getComputedStyle(e); |
22 shouldBe("computedStyle.getPropertyValue('outline-offset')", "'2px'"); | 22 shouldBe("computedStyle.getPropertyValue('outline-offset')", "'2px'"); |
23 shouldBe("computedStyle.getPropertyCSSValue('outline-offset').getFloatValue(CSSP
rimitiveValue.CSS_PX)", "2"); | |
24 | 23 |
25 document.body.removeChild(testContainer); | 24 document.body.removeChild(testContainer); |
26 | 25 |
27 </script> | 26 </script> |
28 </body> | 27 </body> |
29 </html> | 28 </html> |
OLD | NEW |