Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | function test() |
michael@0 | 5 | { |
michael@0 | 6 | waitForExplicitFinish(); |
michael@0 | 7 | |
michael@0 | 8 | let doc; |
michael@0 | 9 | |
michael@0 | 10 | gBrowser.selectedTab = gBrowser.addTab(); |
michael@0 | 11 | gBrowser.selectedBrowser.addEventListener("load", function onload() { |
michael@0 | 12 | gBrowser.selectedBrowser.removeEventListener("load", onload, true); |
michael@0 | 13 | doc = content.document; |
michael@0 | 14 | waitForFocus(performTest, content); |
michael@0 | 15 | }, true); |
michael@0 | 16 | |
michael@0 | 17 | content.location = "data:text/html,<a href='%23xxx'><span>word1 <span> word2 </span></span><span> word3</span></a>"; |
michael@0 | 18 | |
michael@0 | 19 | function performTest() |
michael@0 | 20 | { |
michael@0 | 21 | let link = doc.querySelector("a");; |
michael@0 | 22 | let text = gatherTextUnder(link); |
michael@0 | 23 | is(text, "word1 word2 word3", "Text under link is correctly computed."); |
michael@0 | 24 | doc = null; |
michael@0 | 25 | gBrowser.removeCurrentTab(); |
michael@0 | 26 | finish(); |
michael@0 | 27 | } |
michael@0 | 28 | } |
michael@0 | 29 |