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

Side by Side Diff: LayoutTests/editing/selection/transformed-selection-rects.html

Issue 637763002: Unprefix usage of -webkit-transform in tests (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 <html> 1 <html>
2 <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 2 <head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
3 <style type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 .transformed { 4 .transformed {
5 width: 600px; 5 width: 600px;
6 margin: 20px; 6 margin: 20px;
7 padding: 10px; 7 padding: 10px;
8 font-size: 18pt; 8 font-size: 18pt;
9 -webkit-transform-origin: top left; 9 -webkit-transform-origin: top left;
10 -webkit-transform: rotate(10deg); 10 transform: rotate(10deg);
11 border: 1px solid black; 11 border: 1px solid black;
12 } 12 }
13 #test { 13 #test {
14 font-weight: bold; 14 font-weight: bold;
15 } 15 }
16 </style> 16 </style>
17 <script src="../editing.js" language="JavaScript" type="text/JavaScript" ></scri pt> 17 <script src="../editing.js" language="JavaScript" type="text/JavaScript" ></scri pt>
18 <script> 18 <script>
19 if (window.internals) 19 if (window.internals)
20 internals.settings.setEditingBehavior('mac'); 20 internals.settings.setEditingBehavior('mac');
(...skipping 11 matching lines...) Expand all
32 32
33 <p>Tests that selection rects take transforms into account. The red box should be the bounds of the transformed selection.</p> 33 <p>Tests that selection rects take transforms into account. The red box should be the bounds of the transformed selection.</p>
34 <div class="transformed"> 34 <div class="transformed">
35 <p>Lorem ipsum <span id="test">dolor sit amet, consectetur adipisicing</span > elit.</p> 35 <p>Lorem ipsum <span id="test">dolor sit amet, consectetur adipisicing</span > elit.</p>
36 </div> 36 </div>
37 37
38 <script>runEditingTest()</script> 38 <script>runEditingTest()</script>
39 </body> 39 </body>
40 40
41 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698