| OLD | NEW |
| 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 <script> | 5 <script> |
| 6 window.jsTestIsAsync = true; | 6 window.jsTestIsAsync = true; |
| 7 window.onmessage = function (e) { | 7 window.onmessage = function (e) { |
| 8 if (e.origin == location.protocol + "//" + location.host) { | 8 if (e.origin == location.protocol + "//" + location.host) { |
| 9 queryCommandValues = JSON.parse(e.data); | 9 queryCommandValues = JSON.parse(e.data); |
| 10 shouldBeEqualToString('queryCommandValues["DefaultParagraphSeparator
"]', "div"); | 10 shouldBeEqualToString('queryCommandValues["DefaultParagraphSeparator
"]', "div"); |
| 11 shouldBeEqualToString('queryCommandValues["StyleWithCSS"]', "false")
; | 11 shouldBeEqualToString('queryCommandValues["StyleWithCSS"]', "false")
; |
| 12 finishJSTest(); | 12 finishJSTest(); |
| 13 } | 13 } |
| 14 } | 14 } |
| 15 </script> | 15 </script> |
| 16 </head> | 16 </head> |
| 17 <body> | 17 <body> |
| 18 <iframe style="display: none" src="resources/reset-default-values-helper-1.html"
></iframe> | 18 <iframe style="display: none" src="resources/reset-default-values-helper-1.html"
></iframe> |
| 19 <script src="../../fast/js/resources/js-test-post.js"></script> | |
| 20 </body> | 19 </body> |
| 21 </html> | 20 </html> |
| OLD | NEW |