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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/html/details-mouse-click.html

Issue 1419813004: Remove the "horizontal-bt" value from -webkit-writing-mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add static_assert to ensure TransformedWritingMode matches to WritingMode Created 5 years, 1 month 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 1
2 <head> 2 <head>
3 <style> 3 <style>
4 body { 4 body {
5 margin: 0px; 5 margin: 0px;
6 } 6 }
7 div { 7 div {
8 width:200px; 8 width:200px;
9 height:80px; 9 height:80px;
10 } 10 }
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 }; 60 };
61 61
62 var runTests = function () { 62 var runTests = function () {
63 63
64 if (!window.testRunner || !window.eventSender) 64 if (!window.testRunner || !window.eventSender)
65 return; 65 return;
66 66
67 testRunner.dumpAsText(); 67 testRunner.dumpAsText();
68 68
69 testElement(0); 69 testElement(0);
70 testElement(1);
71 testElement(2); 70 testElement(2);
72 testElement(3); 71 testElement(3);
73 72
74 writeLog(error ? "FAIL" : "PASS"); 73 writeLog(error ? "FAIL" : "PASS");
75 } 74 }
76 75
77 </script> 76 </script>
78 77
79 </head> 78 </head>
80 79
81 <body onload="runTests()"> 80 <body onload="runTests()">
82 81
83 <div style="-webkit-writing-mode:horizontal-tb;"> 82 <div style="-webkit-writing-mode:horizontal-tb;">
84 <details id="details0"><input></details> 83 <details id="details0"><input></details>
85 </div> 84 </div>
86 85
87 <div style="-webkit-writing-mode:horizontal-bt;"> 86 <div>
88 <details id="details1"><input></details> 87 <details id="details1"><input></details>
89 </div> 88 </div>
90 89
91 <div style="-webkit-writing-mode:vertical-lr;"> 90 <div style="-webkit-writing-mode:vertical-lr;">
92 <details id="details2"><input></details> 91 <details id="details2"><input></details>
93 </div> 92 </div>
94 93
95 <div style="-webkit-writing-mode:vertical-rl;"> 94 <div style="-webkit-writing-mode:vertical-rl;">
96 <details id="details3"><input></details> 95 <details id="details3"><input></details>
97 </div> 96 </div>
98 97
99 <div id="results"> 98 <div id="results">
100 </div> 99 </div>
101 100
102 </body> 101 </body>
103 102
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698