summaryrefslogtreecommitdiff
path: root/browser/base/content/test/browser_bug710878.js
blob: aaec82787032fd908941b8792577d276738b655c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

function test()
{
  waitForExplicitFinish();

  let doc;

  gBrowser.selectedTab = gBrowser.addTab();
  gBrowser.selectedBrowser.addEventListener("load", function onload() {
    gBrowser.selectedBrowser.removeEventListener("load", onload, true);
    doc = content.document;
    waitForFocus(performTest, content);
  }, true);

  content.location = "data:text/html,<a href='%23xxx'><span>word1 <span> word2 </span></span><span> word3</span></a>";

  function performTest()
  {
    let link = doc.querySelector("a");;
    let text = gatherTextUnder(link);
    is(text, "word1 word2 word3", "Text under link is correctly computed.");
    doc = null;
    gBrowser.removeCurrentTab();
    finish();
  }
}