| Index: third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| diff --git a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| index 9a3412503c42e54aa218f35095e562151d0c8039..d4111d854e535a93b8a8cb7983235dd8da87c137 100644
|
| --- a/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| +++ b/third_party/WebKit/LayoutTests/inspector/elements/styles-3/style-autocomplete.html
|
| @@ -30,6 +30,11 @@ function test()
|
| testAgainstGolden(namePrompt, "w", false, ["width"], [], next);
|
| },
|
|
|
| + function testSubstringName(next)
|
| + {
|
| + testAgainstGolden(namePrompt, "size", false, ["font-size", "background-size", "resize"], ["font-align"], next);
|
| + },
|
| +
|
| function testEmptyValue(next)
|
| {
|
| testAgainstGolden(valuePrompt, "", false, ["aliceblue", "red", "inherit"], [], next);
|
| @@ -57,12 +62,17 @@ function test()
|
|
|
| function testValuePrefixed(next)
|
| {
|
| - testAgainstGolden(valuePromptFor("-webkit-transform"), "t", false, ["translate", "translateY", "translate3d"], ["initial", "inherit"], next);
|
| + testAgainstGolden(valuePromptFor("-webkit-transform"), "tr", false, ["translate", "translateY", "translate3d"], ["initial", "inherit"], next);
|
| },
|
|
|
| function testValueUnprefixed(next)
|
| {
|
| - testAgainstGolden(valuePromptFor("transform"), "t", false, ["translate", "translateY", "translate3d"], ["initial", "inherit"], next);
|
| + testAgainstGolden(valuePromptFor("transform"), "tr", false, ["translate", "translateY", "translate3d"], ["initial", "inherit"], next);
|
| + },
|
| +
|
| + function testValueSubstring(next)
|
| + {
|
| + testAgainstGolden(valuePromptFor("color"), "blue", false, ["blue", "darkblue", "lightblue"], ["darkred", "yellow", "initial", "inherit"], next);
|
| }
|
| ]);
|
|
|
|
|