This commit is contained in:
Jesse Ruderman ext:(%20and%20Karl%20Tomlinson%20%3Ckarlt%2B%40karlt.net%3E) 2010-11-08 09:21:20 +13:00
Родитель 1033184ef0
Коммит f08310a46c
2 изменённых файлов: 24 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,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>

Просмотреть файл

@ -80,3 +80,4 @@ load 580100-1.html
load 580212-1.html
skip-if(gtk2Widget) load 580233-1.html
load 580719-1.html
load 595727-1.html