Closed
Bug 770882
Opened 13 years ago
Closed 13 years ago
resizer.xml visible in the debugger
Categories
(DevTools :: Debugger, defect, P2)
Tracking
(firefox15 affected, firefox16- fixed)
RESOLVED
FIXED
Firefox 17
People
(Reporter: paul, Assigned: past)
References
Details
Attachments
(3 files)
95.81 KB,
image/jpeg
|
Details | |
2.72 KB,
patch
|
rcampbell
:
review+
lsblakk
:
approval-mozilla-aurora+
|
Details | Diff | Splinter Review |
2.49 KB,
patch
|
rcampbell
:
review-
|
Details | Diff | Splinter Review |
STR:
- open about:blank
- open the debugger
- open the Responsive Mode
Reporter | ||
Comment 1•13 years ago
|
||
I can't reproduce. Maybe fixed already.
STR work for me on Win 7 with the latest Mozilla/5.0 (Windows NT 6.1; WOW64; rv:16.0) Gecko/16.0 Firefox/16.0 (Built from http://hg.mozilla.org/mozilla-central/rev/87db9617a885).
After opening the responsive view, the debugger loads resizer.xml:
<?xml version="1.0"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<bindings id="resizerBindings"
xmlns="http://www.mozilla.org/xbl">
<binding id="resizer">
<resources>
<stylesheet src="chrome://global/skin/resizer.css"/>
</resources>
<implementation>
<constructor>
<![CDATA[
// don't do this for viewport resizers; causes a crash related to
// bugs 563665 and 581536 otherwise
if (this.parentNode == this.ownerDocument.documentElement)
return;
// if the direction is rtl, set the rtl attribute so that the
// stylesheet can use this to make the cursor appear properly
var direction = window.getComputedStyle(this, "").direction;
if (direction == "rtl") {
this.setAttribute("rtl", "true");
}
]]>
</constructor>
</implementation>
</binding>
</bindings>
Comment 3•13 years ago
|
||
There's a screenshot in bug 767390 that also shows resizer.xml in the Debugger.
Assignee | ||
Updated•13 years ago
|
Priority: -- → P2
Assignee | ||
Updated•13 years ago
|
Assignee: nobody → past
Status: NEW → ASSIGNED
Comment 4•13 years ago
|
||
Related bug: https://bugzilla.mozilla.org/show_bug.cgi?id=760882
See Also: → 760882
Assignee | ||
Comment 5•13 years ago
|
||
OK, so the fact that it took me so long to see what is wrong here, is rather embarrassing. Apparently though a holiday can seriously clear your mind!
Attachment #653413 -
Flags: review?(rcampbell)
Comment 6•13 years ago
|
||
Wow...
Comment 7•13 years ago
|
||
Comment on attachment 653413 [details] [diff] [review]
Working patch
Seem to be able to trigger this with a reload while the debugger's active. This should fix.
Attachment #653413 -
Flags: review?(rcampbell) → review+
Comment 8•13 years ago
|
||
doesn't apply to beta, would like to include it in aurora and beta as it's a pretty basic patch that pre-empts some user confusion.
Updated•13 years ago
|
tracking-firefox15:
--- → ?
tracking-firefox16:
--- → ?
Assignee | ||
Comment 9•13 years ago
|
||
This applies cleanly to beta.
Attachment #654138 -
Flags: review?(rcampbell)
Assignee | ||
Comment 10•13 years ago
|
||
Whiteboard: [fixed-in-fx-team]
Comment 11•13 years ago
|
||
Comment on attachment 654138 [details] [diff] [review]
Patch for beta
we missed the boat on beta. Sorry.
Attachment #654138 -
Flags: review?(rcampbell) → review-
Updated•13 years ago
|
tracking-firefox15:
? → ---
Comment 12•13 years ago
|
||
Comment on attachment 653413 [details] [diff] [review]
Working patch
[Approval Request Comment]
Bug caused by (feature/regressing bug #): New feature.
User impact if declined: users may see mysterious system scripts in the debugger during reloads.
Testing completed (on m-c, etc.): on m-c, local
Risk to taking this patch (and alternatives if risky): negligible.
String or UUID changes made by this patch: none
I think this should apply fairly easily on aurora, requesting approval.
Attachment #653413 -
Flags: approval-mozilla-aurora?
Comment 13•13 years ago
|
||
Comment on attachment 653413 [details] [diff] [review]
Working patch
I don't see the need to track this for 16, we can approve for Aurora though.
Attachment #653413 -
Flags: approval-mozilla-aurora? → approval-mozilla-aurora+
Updated•13 years ago
|
Comment 14•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team]
Target Milestone: --- → Firefox 17
Assignee | ||
Comment 15•13 years ago
|
||
Landed in aurora:
https://hg.mozilla.org/releases/mozilla-aurora/rev/805e936380ab
status-firefox15:
--- → affected
status-firefox16:
--- → fixed
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•