Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js |
| diff --git a/third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js b/third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js |
| index ee35414d8c3f0e2d5531e70a08cd03f76cc9e07b..f24439caad387d132d10beb456da3198cfb1a2e8 100644 |
| --- a/third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js |
| +++ b/third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js |
| @@ -2,7 +2,9 @@ function checkValues(element, property, propertyID, value, computedValue) |
| { |
| window.element = element; |
| var elementID = element.id || "element"; |
| - assert_equals(eval("element.style." + property), value, property + " specified value is not what it should.."); |
| + assert_equals( |
| + eval('element.style.' + property), value, |
| + property + ' specified value is not what it should.'); |
|
svillar
2017/02/02 09:11:19
unrelated change?
jfernandez
2017/02/06 15:17:17
Umm, I guess git cl format applied some changes he
|
| assert_equals(eval("window.getComputedStyle(" + elementID + ", '').getPropertyValue('" + propertyID + "')"), computedValue, property + " is not what is should."); |
| } |