Skip to content

Commit

Permalink
[css-typed-om] Add support for the column-width property.
Browse files Browse the repository at this point in the history
Bug: 820299
Change-Id: I9e380416b18f30294fe7cb969a0ce7d0ab1fd7bd
Reviewed-on: https://chromium-review.googlesource.com/977910
Reviewed-by: Darren Shen <shend@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#546082}
  • Loading branch information
Rune Lillesveen authored and chromium-wpt-export-bot committed Mar 27, 2018
1 parent 2e48036 commit 7f0ddf6
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions css/css-typed-om/the-stylepropertymap/properties/column-width.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!doctype html>
<meta charset="utf-8">
<title>'column-width' property</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om/#dom-stylepropertymapreadonly-get">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om/#dom-stylepropertymap-set">
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om/#reify-stylevalue">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<script src="resources/testsuite.js"></script>
<body>
<div id="log"></div>
<script>
'use strict';

runPropertyTests('column-width', [
{ syntax: 'auto' },
{
syntax: '<length>',
specified: assert_is_equal_with_range_handling
},
]);

</script>

0 comments on commit 7f0ddf6

Please sign in to comment.