michael@0: function test () { michael@0: michael@0: waitForExplicitFinish(); michael@0: gBrowser.selectedTab = gBrowser.addTab(); michael@0: gBrowser.selectedBrowser.addEventListener("load", function () { michael@0: gBrowser.selectedBrowser.removeEventListener("load", arguments.callee, true); michael@0: michael@0: let doc = gBrowser.contentDocument; michael@0: let tooltip = document.getElementById("aHTMLTooltip"); michael@0: michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("svg1")), "should get title"); michael@0: is(tooltip.getAttribute("label"), "This is a non-root SVG element title"); michael@0: michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("text1")), "should get title"); michael@0: is(tooltip.getAttribute("label"), "\n\n\n This is a title\n\n "); michael@0: michael@0: ok(!tooltip.fillInPageTooltip(doc.getElementById("text2")), "should not get title"); michael@0: michael@0: ok(!tooltip.fillInPageTooltip(doc.getElementById("text3")), "should not get title"); michael@0: michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("link1")), "should get title"); michael@0: is(tooltip.getAttribute("label"), "\n This is a title\n "); michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("text4")), "should get title"); michael@0: is(tooltip.getAttribute("label"), "\n This is a title\n "); michael@0: michael@0: ok(!tooltip.fillInPageTooltip(doc.getElementById("link2")), "should not get title"); michael@0: michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("link3")), "should get title"); michael@0: isnot(tooltip.getAttribute("label"), ""); michael@0: michael@0: ok(tooltip.fillInPageTooltip(doc.getElementById("link4")), "should get title"); michael@0: is(tooltip.getAttribute("label"), "This is an xlink:title attribute"); michael@0: michael@0: ok(!tooltip.fillInPageTooltip(doc.getElementById("text5")), "should not get title"); michael@0: michael@0: gBrowser.removeCurrentTab(); michael@0: finish(); michael@0: }, true); michael@0: michael@0: content.location = michael@0: "http://mochi.test:8888/browser/browser/base/content/test/general/title_test.svg"; michael@0: } michael@0: