Changes

Jump to: navigation, search

Delta debugging framework

163 bytes removed, 00:44, 20 November 2006
Project News
''This is where your regular updates will go. In these you should discuss the status or your work, your interactions with other members of the community (e.g., Seneca and Mozilla), problems you have encountered, etc. Put detailed technical information into the Project Details page (i.e., update it as you go), and save this section for news about participation in the project.''
 
=== Nov. 19, 2006 ===
The earlier crash case we had (see the update directly below) was a non-regressive bug--there was no former build that worked with it.
 
Going to use [https://bugzilla.mozilla.org/show_bug.cgi?id=325377 Bug #325377] instead. Having difficulty identifying when it was first introduced--the information in the bug report doesn't seem to be quite accurate. Using the nightly builds as archived at [http://archive.mozilla.org/pub/mozilla/nightly/ http://archive.mozilla.org/pub/mozilla/nightly/] to narrow it down.
 
Fortunately this crash is easily automated and does not require user interaction.
 
=== Nov. 18, 2006 ===
<strike>Found a suitable crash case thanks to the people of [irc://irc.mozilla.org#qa #qa] (in particular, asqueella and Aleksej). For full details on the bug, see [https://bugzilla.mozilla.org/show_bug.cgi?id=354300 Bug #354300].</strike>
Put the following code into a XUL file for a fantastic time:
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<window
xmlns:html="http://www.w3.org/1999/xhtml"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
title="Testcase #2 for bug 354300 - Crash [@ nsPopupSetFrame::Destroy] when removing popup on popupshowing">
<script>
function onload() {
document.addEventListener("popupshowing", doe, true);
function doe(e) {
var x= e.target;
x.parentNode.removeChild(x);
}
var x= document.getElementsByTagName("menupopup")[0];x.showPopup();
}
</script>
<description value="This page should not crash" />
<menupopup>
<menuitem label="One" command="1"/>
</menupopup>
</window>
=== Nov. 17, 2006 ===
1
edit

Navigation menu