This commit is contained in:
jruderman@hmc.edu 2008-03-27 00:03:22 -07:00
Родитель 5b27bd0b9e
Коммит c236c042fc
2 изменённых файлов: 36 добавлений и 0 удалений

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

@ -0,0 +1,35 @@
<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
<head>
<script type="text/javascript">
window.addEventListener("load", boom, false);
function boom()
{
var d = document.getElementById("d");
var c = document.createElement("td");
c.setAttribute("rowspan", 2);
d.parentNode.insertBefore(c, d);
document.getElementById("d").focus();
// Wait long enough for the caret to blink at least once.
setTimeout(done, 1200);
}
function done()
{
document.documentElement.removeAttribute("class");
}
</script>
</head>
<!-- no <body>, intentionally -->
<div dir="rtl"></div>
<table><tr contenteditable="true" id="d"><td></td></tr></table>
</html>

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

@ -45,3 +45,4 @@ load 403579-1.html
load 404301-1.xhtml
load 411582.xhtml
load 413180-1.html
load 423514-1.xhtml