| Index: LayoutTests/fast/css/user-stylesheet-crash.html
|
| diff --git a/LayoutTests/fast/css/user-stylesheet-crash.html b/LayoutTests/fast/css/user-stylesheet-crash.html
|
| deleted file mode 100644
|
| index 1e73476232bcb35851e52accfcd6e6b1b90eebb4..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/fast/css/user-stylesheet-crash.html
|
| +++ /dev/null
|
| @@ -1,31 +0,0 @@
|
| -<html>
|
| -<head>
|
| -<script>
|
| -function createIframe()
|
| -{
|
| - var iframe = document.createElement("iframe");
|
| - document.body.appendChild(iframe);
|
| - var iframeDocument = iframe.contentDocument;
|
| - var link = iframeDocument.createElement("link");
|
| - link.setAttribute("rel", "stylesheet");
|
| - link.setAttribute("href", "does_not_exist.css");
|
| - iframeDocument.head.appendChild(link);
|
| - if (window.testRunner) {
|
| - testRunner.addUserStyleSheet("#test { color: blue: }", true);
|
| - setTimeout("window.testRunner.notifyDone()", 100);
|
| - }
|
| -}
|
| -
|
| -if (window.testRunner) {
|
| - testRunner.dumpAsText();
|
| - testRunner.waitUntilDone();
|
| - testRunner.addUserStyleSheet("#test { color: red: }", true);
|
| -}
|
| -window.onload = createIframe;
|
| -
|
| -</script>
|
| -</head>
|
| -<body>
|
| -This test requires DRT. It passes if it doesn't crash.
|
| -</body>
|
| -</html>
|
|
|