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

Unified Diff: LayoutTests/userstyles/user-stylesheet-invalidate.html

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebFrameCSSCallbackTest tests Created 7 years, 1 month 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
Index: LayoutTests/userstyles/user-stylesheet-invalidate.html
diff --git a/LayoutTests/userstyles/user-stylesheet-invalidate.html b/LayoutTests/userstyles/user-stylesheet-invalidate.html
deleted file mode 100644
index 50b838c3b0caf1f158c27013550d0180749663b1..0000000000000000000000000000000000000000
--- a/LayoutTests/userstyles/user-stylesheet-invalidate.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE HTML>
-<html>
-<head>
-<style>
-* { color: red; }
-</style>
-<script>
-if (window.testRunner) {
- testRunner.dumpAsText();
- testRunner.addUserStyleSheet("div { width:0; }", true);
-}
-</script>
-</head>
-<body>
-This test requires layout test runner.
-<div id="target">FAIL</div>
-<script>
-var style = document.createElement("style");
-style.innerText = "* { color: blue; }";
-document.head.insertBefore(style, document.getElementsByTagName("style")[0]);
-if (document.getElementById('target').offsetWidth == 0)
- document.getElementById('target').innerHTML = 'PASS';
-</script>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698