1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/base/crashtests/387460-1-inner.xhtml Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,22 @@ 1.4 +<html xmlns="http://www.w3.org/1999/xhtml"> 1.5 +<head></head> 1.6 +<body> 1.7 +<a id="a" href="#"></a> 1.8 + 1.9 +<table><tbody> 1.10 +<tr><td id="d"/></tr> 1.11 +<tr id="b"><td id="c"></td></tr> 1.12 +</tbody></table> 1.13 + 1.14 + 1.15 +<script> 1.16 +function doe() { 1.17 + document.getElementById('b').appendChild(document.getElementById('c')); 1.18 + window.addEventListener('DOMAttrModified', function(e){document.getElementById('a').focus();}, true); 1.19 + document.getElementById('d').setAttribute('rowspan', 3); 1.20 +} 1.21 +setTimeout(doe, 200); 1.22 +</script> 1.23 + 1.24 +</body> 1.25 +</html> 1.26 \ No newline at end of file