author | Simon Montagu <smontagu@smontagu.org> |
Wed, 27 Feb 2013 09:32:48 +0200 | |
changeset 123135 | d8f64a7543866297bad6799e6c1739a78c498471 |
parent 123134 | 940a3216517acc793f423deaf0f01414de4257b8 |
child 123136 | eb26563bb2691ccb91268b30259bd467f37fe6c4 |
push id | 24372 |
push user | emorley@mozilla.com |
push date | Wed, 27 Feb 2013 13:22:59 +0000 |
treeherder | mozilla-central@0a91da5f5eab [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
bugs | 841205 |
milestone | 22.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
content/base/crashtests/841205.html | file | annotate | diff | comparison | revisions | |
content/base/crashtests/crashtests.list | file | annotate | diff | comparison | revisions |
new file mode 100644 --- /dev/null +++ b/content/base/crashtests/841205.html @@ -0,0 +1,25 @@ +<!DOCTYPE html> +<html> +<head> +<script> + +function boom() +{ + var b = document.createElement('bdi'); + var c = document.createElement('div'); + var d = document.createElement('div'); + + b.appendChild(c); + c.appendChild(d); + b.removeChild(c); + d.appendChild(b); + document.createElement('div').appendChild(c); + b.appendChild(document.createElement('div')); + + b.setAttribute('dir', "auto"); +} + +</script> +</head> +<body onload="boom();"></body> +</html>