Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / css / link-alternate-style-recalc.html
1 <!DOCTYPE html>
2 <script src="../../resources/js-test.js"></script>
3 <link rel="alternate stylesheet" title="not-preferred" href="data:text/css,#t {color: green}">
4 <div id="t"></div>
5 <script>
6 description("Check that alternate stylesheet load completion did not cause a synchronous style recalc.");
7
8 window.onload = function(){
9     shouldNotBe("internals.updateStyleAndReturnAffectedElementCount()", "0");
10     shouldBe("getComputedStyle(document.getElementById('t'), null).color", "'rgb(0, 0, 0)'");
11 };
12 </script>