Commit d220313c authored by Rune Lillesveen's avatar Rune Lillesveen Committed by Commit Bot

[css-typed-om] Add support for the column-width property.

Bug: 820299
Change-Id: I9e380416b18f30294fe7cb969a0ce7d0ab1fd7bd
Reviewed-on: https://chromium-review.googlesource.com/977910Reviewed-by: default avatarDarren Shen <shend@chromium.org>
Commit-Queue: Rune Lillesveen <futhark@chromium.org>
Cr-Commit-Position: refs/heads/master@{#546082}
parent 2c1de00e
<!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>
......@@ -3203,6 +3203,8 @@
computed_style_custom_functions: ["setter"],
converter: "ConvertComputedLength<float>",
custom_apply_functions_all: true,
keywords: ["auto"],
typedom_types: ["Keyword", "Length"],
},
{
name: "-webkit-highlight",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment