equal
deleted
inserted
replaced
|
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" |
|
2 "http://www.w3.org/TR/html4/strict.dtd"> |
|
3 <html lang="en"> |
|
4 <head> |
|
5 </head> |
|
6 <body onload="start()" onunload="test()"> |
|
7 <p> |
|
8 <p><b>Bug 14207 : </b> |
|
9 <a href="http://bugs.webkit.org/show_bug.cgi?id=14207">REGRESSION: Crash after closing a tab with Google Maps Street View</a></p> |
|
10 |
|
11 <p id="test" style="background-color:skyblue; padding:3px;"><b>STEPS TO TEST:</b> |
|
12 Open a new tab then close this tab. |
|
13 </p> |
|
14 |
|
15 <p id="success" style="background-color:palegreen; padding:3px;"><b>TEST PASS:</b> |
|
16 Expected : The tab is closed. |
|
17 </p> |
|
18 |
|
19 <p id="failure" style="background-color:#FF3300; padding:3px;"><b>TEST FAIL:</b> |
|
20 If the test FAILS : The webkit crashes. |
|
21 </p> |
|
22 </p> |
|
23 <embed id="target" src="resources/spinbox.swf"> |
|
24 <script> |
|
25 var embed; |
|
26 |
|
27 function start() |
|
28 { |
|
29 embed = document.getElementById("target"); |
|
30 embed.bar; |
|
31 } |
|
32 |
|
33 function test() |
|
34 { |
|
35 embed.foo; |
|
36 } |
|
37 </script> |
|
38 </body> |
|
39 </html> |