Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / css / pending-stylesheet-offset-width.html
blob403e74882e9eae93efb40dd86d2f0ff62dd3587a
1 <!DOCTYPE html>
2 <script src="/js-test-resources/js-test.js"></script>
3 <style>
4 #t { width: 200px; }
5 </style>
6 <link rel="stylesheet" href="/resources/load-and-stall.php?name=pending-stylesheet-offset-width.css&stallAt=0&stallFor=1">
7 <div id="t"></div>
8 <script>
9 description("Check that we use the style present asking for offsetWidth, ignoring pending stylesheets.");
11 shouldBe("t.offsetWidth", "200");
12 </script>