Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / scrollbars / rtl / overflow-scroll-rtl.html
blob15ce2bc9e26d732c0329b679f38a118b06bddb76
1 <!DOCTYPE html>
2 <html style="font-family: ahem; font-size: 10px; -webkit-font-smoothing: none;">
3 <head>
4 <script src="../../resources/ahem.js"></script>
5 <script>
6 function runTest() {
7 if (window.internals)
8 internals.settings.setMockScrollbarsEnabled(true);
10 if (window.testRunner)
11 testRunner.dumpAsTextWithPixelResults();
13 </script>
14 </head>
15 <body onload="runTest();">
16 <p>All the digits from 0 to 9 should be visible.</p>
17 <div id="outer" style="direction: rtl; background-color: blue; width: 200px; height: 200px; overflow: scroll;">
18 <div id="inner" style="background-color: lightgreen;">0123456789</div>
19 </div>
20 </body>
21 </html>