Title: [201343] trunk/LayoutTests
Revision
201343
Author
ryanhad...@apple.com
Date
2016-05-24 12:48:58 -0700 (Tue, 24 May 2016)

Log Message

Unreviewed, rolling out r201323.

One of the LayoutTests added with this change fails on all
platforms. Rolling out until ResourceTiming flakiness fix is
landed

Reverted changeset:

"Add a few initiator tests to resource timing."
https://bugs.webkit.org/show_bug.cgi?id=157986
http://trac.webkit.org/changeset/201323

Modified Paths

Removed Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (201342 => 201343)


--- trunk/LayoutTests/ChangeLog	2016-05-24 19:04:24 UTC (rev 201342)
+++ trunk/LayoutTests/ChangeLog	2016-05-24 19:48:58 UTC (rev 201343)
@@ -1,3 +1,17 @@
+2016-05-24  Ryan Haddad  <ryanhad...@apple.com>
+
+        Unreviewed, rolling out r201323.
+
+        One of the LayoutTests added with this change fails on all
+        platforms. Rolling out until ResourceTiming flakiness fix is
+        landed
+
+        Reverted changeset:
+
+        "Add a few initiator tests to resource timing."
+        https://bugs.webkit.org/show_bug.cgi?id=157986
+        http://trac.webkit.org/changeset/201323
+
 2016-05-24  Alex Christensen  <achristen...@webkit.org>
 
         Unskip passing test after r201336

Deleted: trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css-expected.txt (201342 => 201343)


--- trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css-expected.txt	2016-05-24 19:04:24 UTC (rev 201342)
+++ trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css-expected.txt	2016-05-24 19:48:58 UTC (rev 201343)
@@ -1,2 +0,0 @@
-PASS initiator is "css"
-

Deleted: trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css.html (201342 => 201343)


--- trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css.html	2016-05-24 19:04:24 UTC (rev 201342)
+++ trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-css.html	2016-05-24 19:48:58 UTC (rev 201343)
@@ -1,36 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script>
-    if (window.internals)
-        internals.setResourceTimingSupport(true);
-    if (window.testRunner) {
-        testRunner.dumpAsText()
-        testRunner.waitUntilDone();
-    }
-</script>
-<script src=""
-<body>
-<style>
-    body { background: url("../../resources/square100.png"); }
-</style>
-<script>
-    var initiator;
-    var runTest = function() {
-        var resources = performance.getEntriesByType('resource');
-        for (var i = 0; i < resources.length; ++i) {
-            if (resources[i].name.indexOf("square") != -1) {
-                initiator = resources[i].initiatorType;
-                shouldBeEqualToString("initiator", "css");
-            }
-        };
-        if (window.internals)
-            window.internals.setResourceTimingSupport(false);
-        if (window.testRunner)
-            testRunner.notifyDone();
-    };
-    window.addEventListener("load", function() {
-        runTest();
-    });
-</script>
-</body>
-</html>

Deleted: trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override-expected.txt (201342 => 201343)


--- trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override-expected.txt	2016-05-24 19:04:24 UTC (rev 201342)
+++ trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override-expected.txt	2016-05-24 19:48:58 UTC (rev 201343)
@@ -1,2 +0,0 @@
-PASS initiator is "img"
-

Deleted: trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override.html (201342 => 201343)


--- trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override.html	2016-05-24 19:04:24 UTC (rev 201342)
+++ trunk/LayoutTests/http/tests/performance/performance-resource-timing-initiator-no-override.html	2016-05-24 19:48:58 UTC (rev 201343)
@@ -1,37 +0,0 @@
-<!DOCTYPE html>
-<html>
-<script>
-    if (window.internals)
-        internals.setResourceTimingSupport(true);
-    if (window.testRunner) {
-        testRunner.dumpAsText()
-        testRunner.waitUntilDone();
-    }
-</script>
-<script src=""
-<body>
-<img src=""
-<style>
-    body { background: url("../../resources/square100.png"); }
-</style>
-<script>
-    var initiator;
-    var runTest = function() {
-        var resources = performance.getEntriesByType('resource');
-        for (var i = 0; i < resources.length; ++i) {
-            if (resources[i].name.indexOf("square") != -1) {
-                initiator = resources[i].initiatorType;
-                shouldBeEqualToString("initiator", "img");
-            }
-        };
-        if (window.internals)
-            window.internals.setResourceTimingSupport(false);
-        if (window.testRunner)
-            testRunner.notifyDone();
-    };
-    window.addEventListener("load", function() {
-        runTest();
-    });
-</script>
-</body>
-</html>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to