3 <script src=
"resources/text-based-repaint.js" type=
"text/javascript"></script>
4 <script type=
"text/javascript">
7 firstLine
.appendChild(document
.createTextNode("\u00a0"));
8 firstLine
.removeChild(firstLine
.firstChild
);
12 #firstLine { background-color: green; }
13 #firstLine::selection { background-color: green; }
16 <body onload=
"runRepaintTest();">
17 <div id=
"root" style=
"width: 100px; line-height: 100px;">
18 <div id=
"firstLine">FAIL: Test did not run
</div><br>
21 var root
= document
.getElementById("root");
22 var firstLine
= document
.getElementById("firstLine");
23 var selection
= getSelection();
25 selection
.setBaseAndExtent(firstLine
, 0, root
.lastChild
, 0);