2010-02-06 03:03:10 -08:00
|
|
|
function test () {
|
2013-03-21 05:58:07 -07:00
|
|
|
|
2010-02-06 03:03:10 -08:00
|
|
|
waitForExplicitFinish();
|
|
|
|
gBrowser.selectedTab = gBrowser.addTab();
|
|
|
|
gBrowser.selectedBrowser.addEventListener("load", function () {
|
|
|
|
gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true);
|
|
|
|
|
|
|
|
let doc = gBrowser.contentDocument;
|
|
|
|
let tooltip = document.getElementById("aHTMLTooltip");
|
2011-06-30 13:58:21 -07:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("svg1")), "should get title");
|
2011-06-30 13:58:21 -07:00
|
|
|
is(tooltip.getAttribute("label"), "This is a non-root SVG element title");
|
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("text1")), "should get title");
|
2012-01-25 02:59:36 -08:00
|
|
|
is(tooltip.getAttribute("label"), "\n\n\n This is a title\n\n ");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(!tooltip.fillInPageTooltip(doc.getElementById("text2")), "should not get title");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(!tooltip.fillInPageTooltip(doc.getElementById("text3")), "should not get title");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("link1")), "should get title");
|
2012-01-25 02:59:36 -08:00
|
|
|
is(tooltip.getAttribute("label"), "\n This is a title\n ");
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("text4")), "should get title");
|
2012-01-25 02:59:36 -08:00
|
|
|
is(tooltip.getAttribute("label"), "\n This is a title\n ");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(!tooltip.fillInPageTooltip(doc.getElementById("link2")), "should not get title");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("link3")), "should get title");
|
2012-03-22 06:06:20 -07:00
|
|
|
isnot(tooltip.getAttribute("label"), "");
|
2010-02-06 03:03:10 -08:00
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(tooltip.fillInPageTooltip(doc.getElementById("link4")), "should get title");
|
2010-02-06 03:03:10 -08:00
|
|
|
is(tooltip.getAttribute("label"), "This is an xlink:title attribute");
|
|
|
|
|
2013-03-21 05:58:07 -07:00
|
|
|
ok(!tooltip.fillInPageTooltip(doc.getElementById("text5")), "should not get title");
|
2010-02-23 12:45:13 -08:00
|
|
|
|
2010-02-06 03:03:10 -08:00
|
|
|
gBrowser.removeCurrentTab();
|
|
|
|
finish();
|
|
|
|
}, true);
|
|
|
|
|
|
|
|
content.location =
|
2010-03-12 13:53:36 -08:00
|
|
|
"http://mochi.test:8888/browser/browser/base/content/test/title_test.svg";
|
2010-02-06 03:03:10 -08:00
|
|
|
}
|
|
|
|
|