Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1048)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import.html

Issue 1867753006: Revert of Don't apply style elements or PIs with loading imports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import.html b/third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import.html
deleted file mode 100644
index 80e39bd56d100fe4ed216e7c378cdfd204819cf3..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<h1 id="h1"></h1>
-<pre id="res"></pre>
-<script>
- if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.waitUntilDone();
- }
-
- var result = "";
-
- function expectComputedOnH1(name, expected) {
- var value = getComputedStyle(h1)[name];
- result += name + ": ";
- if (value == expected)
- result += "PASS\n";
- else
- result += "FAIL - " + value + ", expected " + expected + "\n";
- }
-
- function sheetLoaded() {
- // Need to remove the stylesheet used to trigger the ignore-pending-stylesheet
- // behavior in order to not have pending stylesheets here.
- document.head.removeChild(document.head.querySelector("style"));
-
- expectComputedOnH1("backgroundColor", "rgb(0, 128, 0)");
- expectComputedOnH1("color", "rgb(0, 128, 0)");
-
- res.innerHTML = result;
- if (window.testRunner)
- testRunner.notifyDone();
- }
-
- // This style element is required to trigger updateLayoutTreeIgnorePendingStylesheets
- // while the main link css file has loaded while its import has not.
- var style = document.createElement("style");
- style.appendChild(document.createTextNode("@import url(resources/slow-loading-sheet.php?sleep=10000&color=pink);"));
- document.head.appendChild(style);
-
- var link = document.createElement("link");
- link.setAttribute("onload", "sheetLoaded()");
- link.setAttribute("rel", "stylesheet");
- link.setAttribute("href", "data:text/css,@import url(http://localhost:8080/css/resources/slow-loading-sheet.php?color=green); h1{color:green}");
- document.head.appendChild(link);
-
- document.body.offsetTop;
- expectComputedOnH1("backgroundColor", "rgba(0, 0, 0, 0)");
- expectComputedOnH1("color", "rgb(0, 0, 0)");
-
-</script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/css/ignore-pending-link-import-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698