OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="../../fast/js/resources/js-test-style.css"> | 4 <link rel="stylesheet" href="../../fast/js/resources/js-test-style.css"> |
5 <script src=../../fast/js/resources/js-test-pre.js language="javascript" type="t
ext/javascript"></script> | 5 <script src=../../fast/js/resources/js-test-pre.js language="javascript" type="t
ext/javascript"></script> |
6 <title>Testing that searching for text starts at the active selection</title> | 6 <title>Testing that searching for text starts at the active selection</title> |
7 </head> | 7 </head> |
8 <body> | 8 <body> |
9 <div id="container"> | 9 <div id="container"> |
10 The _before_selection_ word is before the selection, so we shouldn't be
able to find it if span_to_select is selected. | 10 The _before_selection_ word is before the selection, so we shouldn't be
able to find it if span_to_select is selected. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 | 42 |
43 shouldBeFalse('testRunner.findString("_before_selection_", [])'); | 43 shouldBeFalse('testRunner.findString("_before_selection_", [])'); |
44 shouldBeTrue('testRunner.findString("_in_selection_", [])'); | 44 shouldBeTrue('testRunner.findString("_in_selection_", [])'); |
45 shouldBeTrue('testRunner.findString("_after_selection_", [])'); | 45 shouldBeTrue('testRunner.findString("_after_selection_", [])'); |
46 } | 46 } |
47 | 47 |
48 document.getElementById("console").style.removeProperty("visibility"); | 48 document.getElementById("console").style.removeProperty("visibility"); |
49 | 49 |
50 var successfullyParsed = true; | 50 var successfullyParsed = true; |
51 </script> | 51 </script> |
52 <script src="../../fast/js/resources/js-test-post.js"></script> | |
53 </body> | 52 </body> |
54 </html> | 53 </html> |
OLD | NEW |