Test for bug 816253

This commit is contained in:
Simon Montagu 2012-12-09 23:10:54 -08:00
parent 9d4c4c1cd5
commit 005a494ee9
2 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,31 @@
<!DOCTYPE html>
<html>
<head>
<script>
window.onload = function() {
setInterval(
function next_step() {
var style = document.createElement('style');
style.innerHTML = "{ }";
document.getElementsByTagName("*")[ 7 ].appendChild(style);
window.dump('.');
}, 10);
}
</script>
</head>
<body>
<div id="console"></div>
<div id="parentDiv">
<div id="left-to-right" dir="auto" class="testElement">
<input type="text" value="מקור השם עברית">Test test test
</div>
</div>
<script id="des">
var el = document.getElementById("left-to-right");
document.defaultView.getComputedStyle(el, null).getPropertyValue('border-right-color');
document.getElementById("parentDiv").style.display = "none";
</script>
</body>
</html>

View File

@ -116,3 +116,4 @@ load 752226-2.html
HTTP(..) load xhr_abortinprogress.html
load 786854.html
load xhr_empty_datauri.html
load 816253.html