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

Side by Side Diff: LayoutTests/webexposed/nonstable-css-properties.html

Issue 359023002: Remove CSS Exclusions leftovers (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase against ToT Created 6 years, 5 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 unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <body> 3 <body>
4 <div id='el'></div> 4 <div id='el'></div>
5 5
6 <script src="../resources/js-test.js"></script> 6 <script src="../resources/js-test.js"></script>
7 <script> 7 <script>
8 8
9 description("Test getting and setting nonstable css properties to non-default va lues"); 9 description("Test getting and setting nonstable css properties to non-default va lues");
10 10
11 function testStyle(property, value) { 11 function testStyle(property, value) {
12 var el = document.getElementById('el'); 12 var el = document.getElementById('el');
13 var test = function(toEval, logResult) { 13 var test = function(toEval, logResult) {
14 var result = eval(toEval); 14 var result = eval(toEval);
15 debug(toEval + (logResult ? " is " + result : "")); 15 debug(toEval + (logResult ? " is " + result : ""));
16 } 16 }
17 test("el.style.setProperty('" + property + "', '" + value + "')", false); 17 test("el.style.setProperty('" + property + "', '" + value + "')", false);
18 test("el.style.getPropertyValue('" + property + "')", true); 18 test("el.style.getPropertyValue('" + property + "')", true);
19 test("getComputedStyle(el).getPropertyValue('" + property + "')", true); 19 test("getComputedStyle(el).getPropertyValue('" + property + "')", true);
20 debug(""); 20 debug("");
21 } 21 }
22 22
23 var properties = [ 23 var properties = [
24 ['shape-margin', '10px'], 24 ['shape-margin', '10px'],
25 ['shape-outside', 'circle(10px at 10px 10px)'], 25 ['shape-outside', 'circle(10px at 10px 10px)'],
26 26
27 ['-webkit-wrap-flow', 'both'],
28 ['-webkit-wrap-through', 'none'],
29
30 ['grid-auto-columns', 'auto'], 27 ['grid-auto-columns', 'auto'],
31 ['grid-auto-rows', 'auto'], 28 ['grid-auto-rows', 'auto'],
32 ['grid-template-columns', 'min-content'], 29 ['grid-template-columns', 'min-content'],
33 ['grid-template-rows', 'max-content'], 30 ['grid-template-rows', 'max-content'],
34 ['grid-column-start', 'auto'], 31 ['grid-column-start', 'auto'],
35 ['grid-column-end', '2'], 32 ['grid-column-end', '2'],
36 ['grid-row-start', '1'], 33 ['grid-row-start', '1'],
37 ['grid-column', 'auto'], 34 ['grid-column', 'auto'],
38 ['grid-row', '1'], 35 ['grid-row', '1'],
39 ['grid-area', '2'], 36 ['grid-area', '2'],
40 ['grid-auto-flow', 'column'], 37 ['grid-auto-flow', 'column'],
41 ['grid-template-areas', '"test"'], 38 ['grid-template-areas', '"test"'],
42 39
43 ['text-align-last', 'start'], 40 ['text-align-last', 'start'],
44 ['text-justify', 'distribute'], 41 ['text-justify', 'distribute'],
45 ]; 42 ];
46 43
47 properties.forEach(function(args) { 44 properties.forEach(function(args) {
48 testStyle(args[0], args[1]); 45 testStyle(args[0], args[1]);
49 }); 46 });
50 47
51 </script> 48 </script>
52 </body> 49 </body>
53 </html> 50 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698