зеркало из https://github.com/mozilla/gecko-dev.git
24 строки
582 B
HTML
24 строки
582 B
HTML
<!DOCTYPE html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function doTest()
|
|
{
|
|
var r = document.documentElement;
|
|
while(r.firstChild) { r.firstChild.remove(); }
|
|
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);
|
|
</script>
|
|
</head>
|
|
|
|
<body></body>
|
|
</html>
|