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

Unified Diff: third_party/WebKit/LayoutTests/fast/alignment/resources/alignment-parsing-utils-th.js

Issue 2662573002: [css-align] Implement place-content alignment shorthand (Closed)
Patch Set: 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
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.");
}

Powered by Google App Engine
This is Rietveld 408576698