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

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

Issue 2746453005: [css-align] Adapt self-alignment properties to the new baseline syntax (Closed)
Patch Set: More layout tests fixes. Created 3 years, 9 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 43d3d5766bba388bc8c78ec27abb71e8f49625e3..e8b6e9218a4730906abf69f912c3c6071ae64f22 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,7 @@ 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.');
assert_equals(eval("window.getComputedStyle(" + elementID + ", '').getPropertyValue('" + propertyID + "')"), computedValue, property + " is not what is should.");
}

Powered by Google App Engine
This is Rietveld 408576698