layout/style/crashtests/386939-1.html

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

michael@0 1 <html class="reftest-wait">
michael@0 2 <head>
michael@0 3 <script>
michael@0 4
michael@0 5 function rM(n)
michael@0 6 {
michael@0 7 n.parentNode.removeChild(n);
michael@0 8 }
michael@0 9
michael@0 10 function boom()
michael@0 11 {
michael@0 12 rM(document.getElementById("f1"));
michael@0 13 rM(document.getElementById("f2"));
michael@0 14 document.documentElement.removeAttribute("class");
michael@0 15 }
michael@0 16 </script>
michael@0 17 </head>
michael@0 18
michael@0 19 <frameset rows="170,*" onload="setTimeout(boom, 30);">
michael@0 20 <frame src="data:text/html,frame1" id="f1">
michael@0 21 <frame src="data:text/html,frame2" id="f2">
michael@0 22 </frameset>
michael@0 23
michael@0 24 </html>

mercurial