| 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="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.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"); | 23 shouldBe("computedStyle.getPropertyCSSValue('outline-offset').getFloatValue(CSSP
rimitiveValue.CSS_PX)", "2"); |
| 24 | 24 |
| 25 document.body.removeChild(testContainer); | 25 document.body.removeChild(testContainer); |
| 26 | 26 |
| 27 </script> | 27 </script> |
| 28 <script src="../../js/resources/js-test-post.js"></script> | |
| 29 </body> | 28 </body> |
| 30 </html> | 29 </html> |
| OLD | NEW |