gecko-dev/docshell/test/chrome/bug293235_window.xul

85 строки
2.5 KiB
Plaintext
Исходник Обычный вид История

2009-07-10 01:09:44 +04:00
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window id="293235Test"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
width="600"
height="600"
onload="setTimeout(nextTest,0);"
title="bug 293235 test">
<script type="application/javascript"
src=
"chrome://mochikit/content/chrome/docshell/test/chrome/docshell_helpers.js">
</script>
<script type="application/javascript"><![CDATA[
2010-02-18 20:55:05 +03:00
2009-07-10 01:09:44 +04:00
// Define the generator-iterator for the tests.
var tests = testIterator();
////
// Execute the next test in the generator function.
//
function nextTest() {
tests.next();
}
2010-02-18 20:55:05 +03:00
2009-07-10 01:09:44 +04:00
// Return the Element object for the specified element id
function $(id) { return TestWindow.getDocument().getElementById(id); }
////
2010-02-18 20:55:05 +03:00
// Generator function for test steps for bug 293235:
2009-07-10 01:09:44 +04:00
// A visited link should have the :visited style applied
// to it when displayed on a page which was fetched from
// the bfcache.
//
function testIterator()
{
// Load a test page containing a link that should be initially
// blue, per the :link style.
doPageNavigation({
uri: getHttpUrl("bug293235.html"),
onNavComplete: nextTest
});
yield;
2010-02-18 20:55:05 +03:00
is(TestWindow.getWindow().getComputedStyle($("link1"), "").color,
"rgb(0, 0, 128)",
2009-07-10 01:09:44 +04:00
"link not initially blue");
// Load the page that the link on the previous page points to.
doPageNavigation({
uri: getHttpUrl("bug293235_p2.html"),
onNavComplete: nextTest
});
yield;
// Go back, verify the original page was loaded from the bfcache,
// and verify that the link is now purple, per the
// :visited style.
doPageNavigation({
back: true,
eventsToListenFor: ["pageshow"],
expectedEvents: [ { type: "pageshow",
persisted: true,
title: "Bug 293235 page1" } ],
onNavComplete: nextTest
});
yield;
2010-02-18 20:55:05 +03:00
is(TestWindow.getWindow().getComputedStyle($("link1"), "").color,
"rgb(128, 0, 128)",
2009-07-10 01:09:44 +04:00
":visited link wrong color");
2010-02-18 20:55:05 +03:00
// Tell the framework the test is finished. Include the final 'yield'
2009-07-10 01:09:44 +04:00
// statement to prevent a StopIteration exception from being thrown.
finish();
yield;
}
2010-02-18 20:55:05 +03:00
2009-07-10 01:09:44 +04:00
]]></script>
<browser type="content-primary" flex="1" id="content" src="about:blank"/>
</window>