browser/base/content/test/general/browser_bug710878.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

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

mercurial