OLD | NEW |
---|---|
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 Loading... | |
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> |
OLD | NEW |