summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/chrome/test_bug554279.xul
diff options
context:
space:
mode:
authorMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
committerMatt A. Tobin <email@mattatobin.com>2020-02-25 15:07:00 -0500
commit0ddd00f1959c78ce37c14fef3c83401408fca3bf (patch)
treed408e02767c86cf8aac3acbb86722b03c77ede6f /toolkit/content/tests/chrome/test_bug554279.xul
parent20f0905b33cbb18d1caa80c55e2f552c2e18957b (diff)
downloadUXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.gz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.lz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.tar.xz
UXP-0ddd00f1959c78ce37c14fef3c83401408fca3bf.zip
Issue #439 - Remove tests from toolkit/
Diffstat (limited to 'toolkit/content/tests/chrome/test_bug554279.xul')
-rw-r--r--toolkit/content/tests/chrome/test_bug554279.xul39
1 files changed, 0 insertions, 39 deletions
diff --git a/toolkit/content/tests/chrome/test_bug554279.xul b/toolkit/content/tests/chrome/test_bug554279.xul
deleted file mode 100644
index d4057b890..000000000
--- a/toolkit/content/tests/chrome/test_bug554279.xul
+++ /dev/null
@@ -1,39 +0,0 @@
-<?xml version="1.0"?>
-<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
-<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css" type="text/css"?>
-
-<window title="Toolbar" xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
- onload="startTest();">
-
- <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
-
- <toolbox>
- <toolbarpalette id="palette"/>
-
- <toolbar id="tb1" currentset="p1"/>
- </toolbox>
-
- <!-- test resuls are displayed in the html:body -->
- <body xmlns="http://www.w3.org/1999/xhtml"
- style="height: 300px; overflow: auto;"/>
-
- <!-- test code goes here -->
- <script type="text/javascript"><![CDATA[
- var toolbar = $("tb1");
-
- ok(toolbar, "got the toolbar, triggering the xbl constructor");
-
- var palette = $("palette");
- ok(palette, "palette is still in the document");
-
- var button = document.createElement("p1");
- button.id = button.label = "p1";
- palette.appendChild(button);
-
- SimpleTest.waitForExplicitFinish();
- function startTest() {
- is(button.parentNode, toolbar, "button has been added to the toolbar");
- SimpleTest.finish();
- }
- ]]></script>
-</window>