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

Unified Diff: third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html

Issue 1470323003: [DevTools] Removed support deprecated (//@|/*@) source(URL|MappingURL)= (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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: third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html
diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html
index 8ab1c2cfa7e170d9ce52572d1f60810899552c84..c27ce9ec10c576aaaff2337dd8a2f34c3cd1b1c3 100644
--- a/third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html
+++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-4/stylesheet-source-url-comment.html
@@ -17,13 +17,6 @@ function addInlineStyleSheet()
document.head.appendChild(styleElement);
}
-function addInlineStyleSheetDeprecated()
-{
- var styleElement = document.createElement("style");
- styleElement.textContent = "body { color: black; }\n/*@ sourceURL=css/addedInlineStylesheetDeprecated.css */";
- document.head.appendChild(styleElement);
-}
-
function addInlineStyleSheetNonRelative()
{
var styleElement = document.createElement("style");
@@ -77,19 +70,6 @@ function test()
}
},
- function testDeprecatedSourceURLComment(next)
- {
- InspectorTest.showScriptSource("css/addedInlineStylesheetDeprecated.css", didShowSource);
- InspectorTest.evaluateInPage("setTimeout(addInlineStyleSheetDeprecated, 0)");
-
- function didShowSource(sourceFrame)
- {
- InspectorTest.addResult(sourceFrame.textEditor.text());
- forEachHeaderMatchingURL("addedInlineStylesheetDeprecated", checkHeaderHasSourceURL);
- next();
- }
- },
-
function testNonRelativeURL(next)
{
InspectorTest.showScriptSource("/css/nonRelativeInlineStylesheet.css", didShowSource);

Powered by Google App Engine
This is Rietveld 408576698