blob: 3b5d242aa8c1505e904b12d4ce60e2eeaebbb346 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<script>
function doTest()
{
var r = document.documentElement;
while(r.firstChild) { r.removeChild(r.firstChild); }
var body = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
r.appendChild(body);
body.contentEditable = "true";
document.execCommand("inserthtml", false, "<span style=\"position:relative;left:0.8px\">a<select></select>a</span>");
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", doTest, false);
</script>
</head>
<body></body>
</html>
|