forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Backed out 4 changesets (bug 1799343) for causing multiple crashes. C…
…LOSED TREE Backed out changeset 3150074bccfd (bug 1799343) Backed out changeset 7f6358a0b692 (bug 1799343) Backed out changeset 34f040f379b1 (bug 1799343) Backed out changeset a609c8c27ca8 (bug 1799343)
- Loading branch information
Sandor Molnar
committed
Nov 8, 2022
1 parent
1ae11a4
commit 8e6fe2d
Showing
25 changed files
with
562 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" | ||
xmlns:html="http://www.w3.org/1999/xhtml" | ||
xmlns:math="http://www.w3.org/1998/Math/MathML" | ||
class="reftest-wait" | ||
onload="boom();"> | ||
|
||
<html:style type="text/css"> | ||
[class="mp"] { display: -moz-popup; } | ||
</html:style> | ||
|
||
<script> | ||
|
||
function boom() | ||
{ | ||
document.getElementById("mtd").setAttribute("class", "mp"); | ||
setTimeout(boom2, 30); | ||
} | ||
|
||
function boom2() | ||
{ | ||
document.getElementById("mtd").setAttribute("class", ""); | ||
document.documentElement.removeAttribute("class"); | ||
} | ||
|
||
</script> | ||
|
||
<math:mtd id="mtd" /> | ||
|
||
</window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" style="display: table;"> | ||
<panel/> | ||
</window> | ||
<box style="display: -moz-popup;"/> | ||
</window> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.