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

Unified Diff: LayoutTests/inspector/elements/styles/styles-source-lines.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 7 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
Index: LayoutTests/inspector/elements/styles/styles-source-lines.html
diff --git a/LayoutTests/inspector/elements/styles/styles-source-lines.html b/LayoutTests/inspector/elements/styles/styles-source-lines.html
deleted file mode 100644
index b02410bc7ec7ab03fa094c1bf5e6dc5c3c2d8275..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/styles-source-lines.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<html>
-<head>
-<!--
- Line numbers are reported wrt the opened style tag baseline.
- Allow some space here to align local line numbers to be style + 10.
- Selector sourceLine is the line of the corresponding { following the
- selector text.
--->
-
-<style type="text/css" media="screen">
-#main, .at_line_11::/*
-Multiline comment
-before pseudo element
- */before
-{
- color:red;
- content: "Before"
-}
-/*
-
-Multiline comment followed with whitespace
-
-
-*/
-
-#main, .at_line_26
-
-
-{
- /* Comment in definition*/
- /* Comment in definition 2*/
-
- /* Comment in definition 3
- */font-family:/* Comment in
- value */courier;
- color blue;
-}/*Multiline comment
-
-followed by selector
-*/#main,
-.at_line_41
-
-{
- font-size:
- 10px;
-}
-
-
-#main, .at_line_49
-{
- border: 1px solid
- red;
-}
-</style>
-
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<script src="../../../http/tests/inspector/elements-test.js"></script>
-<script>
-
-function test()
-{
- InspectorTest.selectNodeAndWaitForStyles("main", step1);
-
- function step1()
- {
- InspectorTest.dumpSelectedElementStyles(true, false, true);
- InspectorTest.completeTest();
- }
-}
-
-</script>
-</head>
-
-<body onload="runTest()">
-<p>
-Tests that proper source lines are reported for the parsed styles.
-</p>
-
-<div id="main"></div>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698