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

Side by Side Diff: third_party/WebKit/LayoutTests/editing/selection/extend-byline-withfloat.html

Issue 1854503002: Add meta charset tag to unlabelled utf-8 files (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: drop two more files unaffected by utf-8 label Created 4 years, 8 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> 2 <head><meta charset="utf-8"/>
3 <style> 3 <style>
4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abb r,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strik e,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,capti on,tbody,tfoot,thead,tr,th,td{ 4 html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abb r,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strik e,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,capti on,tbody,tfoot,thead,tr,th,td{
5 margin:0; 5 margin:0;
6 padding:0; 6 padding:0;
7 border:0; 7 border:0;
8 outline:0; 8 outline:0;
9 font-weight:inherit; 9 font-weight:inherit;
10 font-style:inherit; 10 font-style:inherit;
11 font-size:100%; 11 font-size:100%;
12 font-family:inherit; 12 font-family:inherit;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 44
45 document.execCommand("FindString", false, "populist"); 45 document.execCommand("FindString", false, "populist");
46 var sel = getSelection(); 46 var sel = getSelection();
47 sel.modify("extend", "forward", "line"); 47 sel.modify("extend", "forward", "line");
48 sel.modify("extend", "forward", "line"); 48 sel.modify("extend", "forward", "line");
49 document.write("PASS"); 49 document.write("PASS");
50 sel.modify("extend", "backward", "line"); 50 sel.modify("extend", "backward", "line");
51 document.write("PASS"); 51 document.write("PASS");
52 </script> 52 </script>
53 </html> 53 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698