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

Unified Diff: LayoutTests/inspector/elements/styles/css-outline.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/css-outline.html
diff --git a/LayoutTests/inspector/elements/styles/css-outline.html b/LayoutTests/inspector/elements/styles/css-outline.html
deleted file mode 100644
index 5578aa3eabc5117e0d43f21493bd1fe690b8f570..0000000000000000000000000000000000000000
--- a/LayoutTests/inspector/elements/styles/css-outline.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<html>
-<head>
-<script src="../../../http/tests/inspector/inspector-test.js"></script>
-<style id="styler">
-@import url("some-url-to-load-css.css") print;
-@charset "ISO-8859-15";
-@namespace svg url(http://www.w3.org/2000/svg);
-@font-face {
- font-family: "Example Font";
- src: url("http://www.example.com/fonts/example");
-}
-
-@page {
- margin: 1in 1.5in;
-}
-@page :right {
- margin-right: 5cm; /* right pages only */
-}
-@page :first {
- margin-top: 8cm; /* extra top margin on the first page */
-}
-
-div { color: red }
-#fluffy {
- border: 1px solid black;
- z-index: 1;
-}
-input:-moz-placeholder { text-overflow: ellipsis; }
-.class-name, p /* style all paragraphs as well */ {
- border-color: blue;
- -lol-cats: "dogs" /* unexisting property */
-}
-
-@keyframes identifier {
- 0% { top: 0; left: 0; }
- 30% { top: 50px; }
- 68%, 72% { left: 50px; }
- 100% { top: 100px; left: 100%; }
-}
-
-svg|a {
- text-decoration: underline;
-}
-
-@media (max-width:500px) {
- span {
- -webkit-border-radius: 10px;
- font-family: "Example Font"
- }
-}
-</style>
-<script>
-
-function getCSS()
-{
- return document.querySelector("#styler").textContent;
-}
-
-function test()
-{
- function onStyleSheetParsed(rules)
- {
- for (var i = 0; i < rules.length; ++i)
- InspectorTest.addObject(rules[i]);
- InspectorTest.completeTest();
- }
-
- function onStyleFetched(result)
- {
- var parser = new WebInspector.CSSParser();
- parser.parse(result.value, onStyleSheetParsed);
- }
-
- InspectorTest.evaluateInPage("getCSS()", onStyleFetched);
-}
-
-</script>
-
-</head>
-
-<body onload="runTest()">
-<p>The test verifies the CSS outline functionality.</p>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698