| Index: third_party/WebKit/LayoutTests/fast/parser/resources/write-script-waiting-for-style-crash.html
|
| diff --git a/third_party/WebKit/LayoutTests/fast/parser/resources/write-script-waiting-for-style-crash.html b/third_party/WebKit/LayoutTests/fast/parser/resources/write-script-waiting-for-style-crash.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7d9dd424906c6543429c24a05c175687a28c0594
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/fast/parser/resources/write-script-waiting-for-style-crash.html
|
| @@ -0,0 +1,20 @@
|
| +<!DOCTYPE html>
|
| +<html>
|
| + <head>
|
| + <title>Regression test for CR573921</title>
|
| + <style>
|
| + @import url(a)
|
| + </style>
|
| + <script>
|
| + function f() {
|
| + window.parent.postMessage(1, '*');
|
| + var t = document.documentElement.outerHTML;
|
| + document.writeln(t);
|
| + }
|
| + </script>
|
| + <style onload="f()"></style>
|
| + </head>
|
| + <body>
|
| + <iframe></iframe>
|
| + </body>
|
| +</html>
|
|
|