| OLD | NEW |
| 1 // Force activating pixel tests - this variable is used in fast/js/resources/js-
test-pre.js, when calling setDumpAsText(). | 1 // Force activating pixel tests - this variable is used in resources/js-test.js,
when calling setDumpAsText(). |
| 2 window.enablePixelTesting = true; | 2 window.enablePixelTesting = true; |
| 3 | 3 |
| 4 var svgNS = "http://www.w3.org/2000/svg"; | 4 var svgNS = "http://www.w3.org/2000/svg"; |
| 5 var xlinkNS = "http://www.w3.org/1999/xlink"; | 5 var xlinkNS = "http://www.w3.org/1999/xlink"; |
| 6 var xhtmlNS = "http://www.w3.org/1999/xhtml"; | 6 var xhtmlNS = "http://www.w3.org/1999/xhtml"; |
| 7 | 7 |
| 8 var rootSVGElement; | 8 var rootSVGElement; |
| 9 var iframeElement; | 9 var iframeElement; |
| 10 | 10 |
| 11 function createSVGElement(name) { | 11 function createSVGElement(name) { |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 if (window.eventSender) { | 57 if (window.eventSender) { |
| 58 eventSender.mouseMoveTo(x, y); | 58 eventSender.mouseMoveTo(x, y); |
| 59 eventSender.mouseDown(); | 59 eventSender.mouseDown(); |
| 60 eventSender.mouseUp(); | 60 eventSender.mouseUp(); |
| 61 } | 61 } |
| 62 } | 62 } |
| 63 | 63 |
| 64 function completeTest() { | 64 function completeTest() { |
| 65 finishJSTest(); | 65 finishJSTest(); |
| 66 } | 66 } |
| OLD | NEW |