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

Side by Side Diff: third_party/WebKit/LayoutTests/typedcssom/inlinestyle/properties/bottom.html

Issue 2529043002: [CSS Typed OM] Add a property test generator for testing the inline StylePropertyMap (Closed)
Patch Set: Add expectation files Created 4 years 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/testharness.js'></script>
3 <script src='../../../resources/testharnessreport.js'></script>
4 <script src='property-suite.js'></script>
5
6 <div id="testElement"></div>
7
8 <script>
9
10 var config = {
11 validKeywords: [
12 'auto'
13 ],
14 validObjects: [
15 new CSSSimpleLength(1, 'px'),
16 new CSSSimpleLength(2, 'percent'),
17 new CSSSimpleLength(3, 'em'),
18 new CSSCalcLength({px: 1, percent: 10}),
19 ],
20 supportsMultiple: false,
21 invalidObjects: [new CSSNumberValue(1)]
22 };
23
24 generatePropertySuite('bottom', config, testElement);
25
26 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698