Chromium Code Reviews| 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..1132897cc61a29c72855ac035933c75cb18fc3c0 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 |
| @@ -57,12 +57,12 @@ function test() |
| function testValuePrefixed(next) |
| { |
|
lushnikov
2016/11/03 22:06:51
let's add some real tests?
einbinder
2016/11/03 23:12:14
Done.
|
| - 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); |
| } |
| ]); |