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

Unified Diff: third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html

Issue 2626143004: DevTools: move from Common module - Geometry and CSSShadowModel (Closed)
Patch Set: minimize test diff Created 3 years, 11 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/inspector/components/geometry.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
diff --git a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
index a3b00707ff33a52ece91917d06412d109e27ad47..b68303adb736966adaba60e47bf9a170ef02fceb 100644
--- a/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
+++ b/third_party/WebKit/LayoutTests/inspector/components/css-shadow-model.html
@@ -2,6 +2,9 @@
<head>
<script src="../../http/tests/inspector/inspector-test.js"></script>
<script>
+var initialize_Test = function() {
+ InspectorTest.preloadModule("inline_editor");
+};
function test()
{
@@ -88,7 +91,7 @@ function test()
function dumpCSSLength(lengthText)
{
- var length = Common.CSSLength.parse(lengthText);
+ var length = InlineEditor.CSSLength.parse(lengthText);
var statusText = length !== null ? "Succeeded: " + length.asCSSText() : "Failed";
InspectorTest.addResult("\"" + lengthText + "\", Parsing " + statusText);
}
@@ -105,7 +108,7 @@ function test()
function dumpShadow(shadowText, isBoxShadow)
{
- var shadows = isBoxShadow ? Common.CSSShadowModel.parseBoxShadow(shadowText) : Common.CSSShadowModel.parseTextShadow(shadowText);
+ var shadows = isBoxShadow ? InlineEditor.CSSShadowModel.parseBoxShadow(shadowText) : InlineEditor.CSSShadowModel.parseTextShadow(shadowText);
var output = [];
for (var i = 0; i < shadows.length; i++)
output.push(shadows[i].asCSSText());
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/inspector/components/geometry.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698