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

Side by Side Diff: third_party/WebKit/LayoutTests/css-parser/whitespace-declaration.html

Issue 1541443002: Fix small bugs in new CSS Property parser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: V4 Created 4 years, 12 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 <!DOCTYPE html>
2 <script src="../resources/js-test.js"></script>
3 <script src="../fast/css/getComputedStyle/resources/computed-style-listing.js">< /script>
4 <div id="target"></div>
5 <script>
Timothy Loh 2016/01/06 00:14:52 Can we use testharness instead of js-test? Otherwi
rwlbuis 2016/01/06 08:11:03 Done.
6 description("This test documents all computed styles on a div element.");
7 var style = getComputedStyle(target);
8 for (var i = 0; i < style.length; i++) {
9 var property = style.item(i);
10 shouldBeFalse("CSS.supports('" + property + "', '')");
11 shouldBeFalse("CSS.supports('" + property + "', ' ')");
12 }
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698