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