| Index: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom.html
|
| diff --git a/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom.html b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom.html
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..882dbe2c176db743226e1ba5ab03ee2a91a4fcd9
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom.html
|
| @@ -0,0 +1,26 @@
|
| +<!DOCTYPE html>
|
| +<script src='../../../resources/testharness.js'></script>
|
| +<script src='../../../resources/testharnessreport.js'></script>
|
| +<script src='property-suite.js'></script>
|
| +
|
| +<div id="testElement"></div>
|
| +
|
| +<script>
|
| +
|
| +var config = {
|
| + validKeywords: [
|
| + 'auto'
|
| + ],
|
| + validObjects: [
|
| + new CSSSimpleLength(1, 'px'),
|
| + new CSSSimpleLength(2, 'percent'),
|
| + new CSSSimpleLength(3, 'em'),
|
| + new CSSCalcLength({px: 1, percent: 10}),
|
| + ],
|
| + supportsMultiple: false,
|
| + invalidObjects: [new CSSNumberValue(1)]
|
| +};
|
| +
|
| +generatePropertySuite('bottom', config, testElement);
|
| +
|
| +</script>
|
|
|