| Index: third_party/WebKit/LayoutTests/inspector/sources/bezier-swatch-position.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/sources/bezier-swatch-position.html b/third_party/WebKit/LayoutTests/inspector/sources/bezier-swatch-position.html
|
| index e5598d996c6294ea56104e73b561f42fc93be418..5c7a0973afff41954a4ae58668dd510da8233877 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/sources/bezier-swatch-position.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/sources/bezier-swatch-position.html
|
| @@ -14,33 +14,33 @@ function test()
|
| function onSourceFrame(sourceFrame)
|
| {
|
| InspectorTest.addResult("Initial swatch positions:");
|
| - InspectorTest.dumpSwatchPositions(sourceFrame, WebInspector.CSSSourceFrame.SwatchBookmark);
|
| + InspectorTest.dumpSwatchPositions(sourceFrame, Sources.CSSSourceFrame.SwatchBookmark);
|
|
|
| InspectorTest.runTestSuite([
|
| function testEditBezier(next)
|
| {
|
| var swatch = sourceFrame.textEditor._codeMirrorElement.querySelector("span[is=bezier-swatch]");
|
| swatch.shadowRoot.querySelector(".bezier-swatch-icon").click();
|
| - sourceFrame._bezierEditor.setBezier(WebInspector.Geometry.CubicBezier.parse("linear"));
|
| + sourceFrame._bezierEditor.setBezier(Common.Geometry.CubicBezier.parse("linear"));
|
| sourceFrame._bezierEditor._onchange();
|
| sourceFrame._swatchPopoverHelper.hide(true)
|
| - InspectorTest.dumpSwatchPositions(sourceFrame, WebInspector.CSSSourceFrame.SwatchBookmark);
|
| + InspectorTest.dumpSwatchPositions(sourceFrame, Sources.CSSSourceFrame.SwatchBookmark);
|
| next();
|
| },
|
|
|
| function testAddBezier(next)
|
| {
|
| - var bodyLineEnd = new WebInspector.TextRange(1, 37, 1, 37);
|
| + var bodyLineEnd = new Common.TextRange(1, 37, 1, 37);
|
| sourceFrame.textEditor.editRange(bodyLineEnd, " transition: height 1s cubic-bezier(0, 0.5, 1, 1);");
|
| - InspectorTest.dumpSwatchPositions(sourceFrame, WebInspector.CSSSourceFrame.SwatchBookmark);
|
| + InspectorTest.dumpSwatchPositions(sourceFrame, Sources.CSSSourceFrame.SwatchBookmark);
|
| next();
|
| },
|
|
|
| function testInvalidateBezier(next)
|
| {
|
| - var startParenthesis = new WebInspector.TextRange(1, 67, 1, 68);
|
| + var startParenthesis = new Common.TextRange(1, 67, 1, 68);
|
| sourceFrame.textEditor.editRange(startParenthesis, "[");
|
| - InspectorTest.dumpSwatchPositions(sourceFrame, WebInspector.CSSSourceFrame.SwatchBookmark);
|
| + InspectorTest.dumpSwatchPositions(sourceFrame, Sources.CSSSourceFrame.SwatchBookmark);
|
| next();
|
| }
|
| ]);
|
|
|