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

Side by Side Diff: third_party/WebKit/LayoutTests/css3/logical-props/resources/style-check.js

Issue 2577363002: Implement CSS Logical Properties: inline/block size (Closed)
Patch Set: Refactor test case 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 unified diff | Download patch
OLDNEW
(Empty)
1 "use strict";
2 function compareWidthHeight(id1, id2) {
3 var element1 = document.getElementById(id1);
4 var style1 = getComputedStyle(element1);
5 var element2 = document.getElementById(id2);
6 var style2 = getComputedStyle(element2);
7 return (style1.width == style2.width) &&
8 (style1.height == style2.height)
9 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698