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

Unified Diff: LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html

Issue 16917013: [CSS Grid Layout] CSSParser should reject <track-list> without a <track-size> (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 6 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
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/named-grid-line-get-set-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html
diff --git a/LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html b/LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html
index f63b9f60017f004f61d4d4aea17741c8ceff8be4..8cb626a8762fb06e5969af10eb1ede8cb8ef4631 100755
--- a/LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html
+++ b/LayoutTests/fast/css-grid-layout/named-grid-line-get-set.html
@@ -147,6 +147,12 @@ if (window.testRunner)
element.style.gridColumns = "'foo'";
element.style.gridRows = "'bar";
testValue(element, "none", "none");
+
+ element = document.createElement("div");
+ document.body.appendChild(element);
+ element.style.gridColumns = "'foo' 'bar'";
+ element.style.gridRows = "'bar' 'foo'";
+ testValue(element, "none", "none");
</script>
<script src="../js/resources/js-test-post.js"></script>
</body>
« no previous file with comments | « no previous file | LayoutTests/fast/css-grid-layout/named-grid-line-get-set-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698