Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / repaint / selection-partial-invalidation-between-blocks.html
blobfb985d7c90ec6c3ee9a66ee1a259abe6dacec167
1 <!DOCTYPE html>
2 <table width="100%">
3 <tr>
4 <td id="firstCell">First cell</td>
5 </tr>
6 <tr>
7 <td id="secondCell">Second cell</td>
8 </tr>
9 </table>
10 <script src="../../resources/run-after-layout-and-paint.js" type="text/javascript"></script>
11 <script src="resources/text-based-repaint.js" type="text/javascript"></script>
12 <script>
13 window.testIsAsync = true;
14 if (window.testRunner)
15 testRunner.waitUntilDone();
17 document.execCommand("selectAll");
19 function repaintTest() {
20 var selection = window.getSelection();
21 var firstCell = document.getElementById("firstCell");
22 selection.setBaseAndExtent(firstCell, 0, firstCell, 1);
23 finishRepaintTest();
25 runAfterLayoutAndPaint(runRepaintTest);
26 </script>