Bug 572598 - Part 7: reftest; r=roc

This commit is contained in:
Ehsan Akhgari 2010-06-21 11:02:15 -04:00
Родитель 48c1ee09b0
Коммит cdb0ab63d7
3 изменённых файлов: 35 добавлений и 0 удалений

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

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html contenteditable="true" class="reftest-wait">
<head>
<script>
function boom()
{
document.getElementById("i").select();
document.execCommand("forecolor", false, "green");
try { document.execCommand("insertunorderedlist", false, null); } catch(e){ }
document.execCommand("selectAll", false, null);
document.execCommand("contentReadOnly", false, null);
document.getElementById("d").contentEditable = "true";
document.getElementById("d").style.position = "absolute";
document.documentElement.focus();
document.execCommand("superscript", false, null);
window.getSelection().removeAllRanges();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();" contenteditable="false"><div id="d"><input id="i"></div></body>
</html>

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

@ -0,0 +1,8 @@
<!DOCTYPE html>
<html>
<head>
</head>
<body><div><input></div></body>
</html>

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

@ -1447,3 +1447,4 @@ random-if(!haveTestPlugin) == 546071-1.html 546071-1-ref.html
== 571281-1a.html 571281-1-ref.html
== 571281-1b.html 571281-1-ref.html
== 571281-1c.html 571281-1-ref.html
== 572598-1.html 572598-ref.html