Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / multicol / flipped-blocks-hit-test.html
blob893f43ad0ef848559edf33e3e3b31c74d1dd9555
1 <div style="
2 width: 200px;
3 height: 100px;
4 -webkit-columns: 2;
5 -webkit-column-gap: 0;
6 columns: 2;
7 column-gap: 0;
8 column-fill: auto;
9 -webkit-writing-mode: horizontal-bt;
10 font: 20px Ahem;
12 1111 2222 3333 4444 5
13 <div></div>
14 </div>
15 <p id="result">The test did not run.</p>
16 <script>
17 if (window.testRunner)
18 testRunner.dumpAsText();
20 var offset = document.caretRangeFromPoint(38, 18).startOffset;
21 document.getElementById("result").innerText = offset === 26 ? "PASS" : "FAIL";
22 </script>