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

Side by Side Diff: LayoutTests/editing/execCommand/justify.html

Issue 48903019: Delete js-test-post.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="../../fast/js/resources/js-test-pre.js"></script> 4 <script src="../../fast/js/resources/js-test-pre.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p id="description"></p> 7 <p id="description"></p>
8 <div id="console"></div> 8 <div id="console"></div>
9 <script> 9 <script>
10 10
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 testJustifying(selectFirstPosition, 'JustifyRight', 'hello', '<div style="text-a lign: right;">hello</div>'); 95 testJustifying(selectFirstPosition, 'JustifyRight', 'hello', '<div style="text-a lign: right;">hello</div>');
96 testJustifying(selectFirstPosition, 'JustifyRight', 'hello<p>world</p>', '<div s tyle="text-align: right;">hello</div><p>world</p>'); 96 testJustifying(selectFirstPosition, 'JustifyRight', 'hello<p>world</p>', '<div s tyle="text-align: right;">hello</div><p>world</p>');
97 testJustifying(selectFirstPosition, 'JustifyRight', '<p>hello</p>world', '<p sty le="text-align: right;">hello</p>world'); 97 testJustifying(selectFirstPosition, 'JustifyRight', '<p>hello</p>world', '<p sty le="text-align: right;">hello</p>world');
98 testJustifying(selectAll, 'JustifyRight', 'hello<blockquote>world</blockquote>', '<div style="text-align: right;">hello</div><blockquote style="text-align: righ t;">world</blockquote>'); 98 testJustifying(selectAll, 'JustifyRight', 'hello<blockquote>world</blockquote>', '<div style="text-align: right;">hello</div><blockquote style="text-align: righ t;">world</blockquote>');
99 testJustifying(selectAll, 'JustifyRight', '<h3>hello</h3>world', '<h3 style="tex t-align: right;">hello</h3><div style="text-align: right;">world</div>'); 99 testJustifying(selectAll, 'JustifyRight', '<h3>hello</h3>world', '<h3 style="tex t-align: right;">hello</h3><div style="text-align: right;">world</div>');
100 testJustifying(selectFirstPosition, 'JustifyRight', '<div style="text-align: rig ht;">hello<br>world</div>'); 100 testJustifying(selectFirstPosition, 'JustifyRight', '<div style="text-align: rig ht;">hello<br>world</div>');
101 101
102 document.body.removeChild(testContainer); 102 document.body.removeChild(testContainer);
103 103
104 </script> 104 </script>
105 <script src="../../fast/js/resources/js-test-post.js"></script>
106 </body> 105 </body>
107 </html> 106 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698