Title: [154372] trunk/LayoutTests
Revision
154372
Author
[email protected]
Date
2013-08-20 15:55:55 -0700 (Tue, 20 Aug 2013)

Log Message

<https://webkit.org/b/120095> Delete fast/css/giant-stylesheet-crash.html since it flakily timeout or crash

Reviewed by Antti Koivisto.

Deleted the test. This test was added in r82054 but it has been crashing since r154242.

Since our expected behavior is to crash at the moment, this test's description doesn't even match
the expected behavior anymore. Furthermore, it intermittently times out due to DRT taking too long to
allocate memory before it can crash.

* fast/css/giant-stylesheet-crash-expected.txt: Removed.
* fast/css/giant-stylesheet-crash.html: Removed.

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (154371 => 154372)


--- trunk/LayoutTests/ChangeLog	2013-08-20 22:52:55 UTC (rev 154371)
+++ trunk/LayoutTests/ChangeLog	2013-08-20 22:55:55 UTC (rev 154372)
@@ -1,3 +1,18 @@
+2013-08-20  Ryosuke Niwa  <[email protected]>
+
+        <https://webkit.org/b/120095> Delete fast/css/giant-stylesheet-crash.html since it flakily timeout or crash
+
+        Reviewed by Antti Koivisto.
+
+        Deleted the test. This test was added in r82054 but it has been crashing since r154242.
+
+        Since our expected behavior is to crash at the moment, this test's description doesn't even match
+        the expected behavior anymore. Furthermore, it intermittently times out due to DRT taking too long to
+        allocate memory before it can crash.
+
+        * fast/css/giant-stylesheet-crash-expected.txt: Removed.
+        * fast/css/giant-stylesheet-crash.html: Removed.
+
 2013-08-20  Daniel Bates  <[email protected]>
 
         <https://webkit.org/b/120032> Add DRT test to ensure that AccessibilityObject::stringValue()

Deleted: trunk/LayoutTests/fast/css/giant-stylesheet-crash-expected.txt (154371 => 154372)


--- trunk/LayoutTests/fast/css/giant-stylesheet-crash-expected.txt	2013-08-20 22:52:55 UTC (rev 154371)
+++ trunk/LayoutTests/fast/css/giant-stylesheet-crash-expected.txt	2013-08-20 22:55:55 UTC (rev 154372)
@@ -1 +0,0 @@
-This test verifies that creating a huge inline stylesheet doesn't crash.

Deleted: trunk/LayoutTests/fast/css/giant-stylesheet-crash.html (154371 => 154372)


--- trunk/LayoutTests/fast/css/giant-stylesheet-crash.html	2013-08-20 22:52:55 UTC (rev 154371)
+++ trunk/LayoutTests/fast/css/giant-stylesheet-crash.html	2013-08-20 22:55:55 UTC (rev 154372)
@@ -1,25 +0,0 @@
-<head>
-<script>
-if (window.testRunner)
-    testRunner.dumpAsText();
-</script>
-
-<script>
-var styleElement = document.createElement('style');
-styleElement.setAttribute('type', 'text/css');
-
-var str="z";
-for (var i = 0; i < 16; i++) {
-    str += str;
-}
-for (var i = 0; i < 1+(1<<16); i++){
-    var txt = document.createTextNode(str);
-    styleElement.appendChild(txt);
-}
-
-document.getElementsByTagName('head')[0].appendChild(styleElement); 
-</script>
-</head>
-<body>
-This test verifies that creating a huge inline stylesheet doesn't crash.
-</body>
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to