Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 22:00:39 +04:00
|
|
|
<html id="outer">
|
|
|
|
|
2010-05-16 21:22:55 +04:00
|
|
|
<script type="application/javascript"
|
|
|
|
src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
|
|
|
|
<script>
|
2012-02-24 01:02:33 +04:00
|
|
|
if (opener)
|
|
|
|
SimpleTest.waitForFocus(function () opener.framesetWindowLoaded(window));
|
2012-03-17 00:07:09 +04:00
|
|
|
// Don't try to call finish() in this frame, since it will get upset that we
|
|
|
|
// ran no tests.
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
2010-05-16 21:22:55 +04:00
|
|
|
</script>
|
|
|
|
|
2010-05-17 17:21:11 +04:00
|
|
|
<frameset rows="30%, 70%">
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 22:00:39 +04:00
|
|
|
<frame src="data:text/html,<html id='f1' ><body id='framebody1'><input id='f2'><body></html>">
|
|
|
|
<frameset cols="30%, 33%, 34%">
|
|
|
|
<frame src="data:text/html,<html id='f3'><body id='framebody2'><input id='f4'><body></html>">
|
|
|
|
<frame src="data:text/html,<html id='f5'><body id='framebody3'><input id='f6' tabindex='2'><body></html>">
|
|
|
|
<frame src="data:text/html,<html id='f7'><body id='framebody4'><input id='f8'><body></html>">
|
|
|
|
</frameset>
|
|
|
|
<noframes>
|
2012-01-19 18:54:35 +04:00
|
|
|
<input id="unused1"/>
|
|
|
|
<input id="unused2" tabindex="1"/>
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 22:00:39 +04:00
|
|
|
</noframes>
|
|
|
|
</frameset>
|
|
|
|
|
|
|
|
</html>
|