Closed
Bug 768399
Opened 13 years ago
Closed 12 years ago
GCLI output should not be forced to be xhtml
Categories
(DevTools :: Console, defect, P3)
DevTools
Console
Tracking
(Not tracked)
RESOLVED
FIXED
Firefox 18
People
(Reporter: jwalker, Assigned: ksk.3393)
Details
(Whiteboard: [good first bug][mentor=jwalker])
Attachments
(1 file, 2 obsolete files)
811 bytes,
patch
|
Details | Diff | Splinter Review |
We're in an iframe, so we can use html without messing up xul
Reporter | ||
Comment 1•13 years ago
|
||
Triage: Filter on the TRIAGE keyword.
Target Milestone: Firefox 17 → Future
Reporter | ||
Comment 2•13 years ago
|
||
Triage
Priority: P2 → P3
Whiteboard: [good first bug][mentor=jwalker]
hi Joe...I would like to help out with this bug. Could you please guide on how to proceed ? Thanks.
Reporter | ||
Comment 4•13 years ago
|
||
To diagnose, create a command [1] that outputs invalid XHTML, see where the error is, I suspect util.setContents() [2]
We'll probably need to alter the source document to be HTML5 rather than XHTML5 [3] in addition to fixing setContents() (if that is the source of the errors)
[1] See https://developer.mozilla.org/en-US/docs/Tools/GCLI#Extending_the_Command_Line
[2] https://github.com/joewalker/gcli/blob/master/lib/gcli/util.js#L346
[3] https://hg.mozilla.org/integration/fx-team/file/tip/browser/devtools/commandline/commandlineoutput.xhtml
Hi joe.. while creating the command for [1] , in the exec() I am not sure how to access the XHTML . Could you help me with that ?
Reporter | ||
Comment 6•13 years ago
|
||
If you create a command that does that following:
exec: function() {
return "<p>First<p>Second";
}
Then I think you'll see the error.
This was the command defn:
Components.utils.import("resource:///modules/devtools/gcli.jsm");
gcli.addCommand({
name: 'invalidtest',
exec: function() {
return "<p>First<p>Second";
}
});
When i run it i get the following exception.
[Exception... "An invalid or illegal string was specified" code: "12" nsresult: "0x8053000c (SyntaxError)" location: "resource:///modules/devtools/gcli.jsm Line: 3018"]
When I looked at http://mxr.mozilla.org/comm-central/source/mozilla/browser/devtools/commandline/gcli.jsm
I couldnt exactly find out what the error was due to .
Reporter | ||
Comment 8•13 years ago
|
||
That link is to comm-central, a better link is http://mxr.mozilla.org/mozilla-central/source/browser/devtools/commandline/gcli.jsm#3018
However that's still not enough to pinpoint the line of the error. One of 2 things needs to happen. I guess you're not using Nightly? So the source is likely to be out of date. You can solve this by hunting around in MXR for the matching version of that file, or by repeating the experiment using Nightly. I recommend the latter.
Yes .Thanks for pointing out. I was using FF 16 beta.. When I tried it in Nightly , this is what I got :
[Exception... "An invalid or illegal string was specified" code: "12" nsresult: "0x8053000c (SyntaxError)" location: "resource:///modules/devtools/gcli.jsm Line: 3068"]
http://mxr.mozilla.org/mozilla-central/source/browser/devtools/commandline/gcli.jsm#3068
Reporter | ||
Comment 10•13 years ago
|
||
So the contextual fragment thing isn't going to work with html I guess. It certainly makes sense to use innerHtml if it's available rather than as a default. We'd probably need to test for innerHtml using ('innerHtml' in elem) to avoid calling a potentially expensive getter.
Or we could look at the clause at the top of the function, perhaps that can be persuaded to work?
Assignee | ||
Comment 11•13 years ago
|
||
(In reply to Joe Walker [:jwalker] from comment #10)
> So the contextual fragment thing isn't going to work with html I guess. It
> certainly makes sense to use innerHtml if it's available rather than as a
> default. We'd probably need to test for innerHtml using ('innerHtml' in
> elem) to avoid calling a potentially expensive getter.
>
> Or we could look at the clause at the top of the function, perhaps that can
> be persuaded to work?
I am sorry Joe , but I don't follow you on this . Are you suggesting that when in xml mode we do something else instead of var child = range.createContextualFragment(contents).firstChild; ?
Reporter | ||
Comment 12•13 years ago
|
||
(In reply to saran from comment #11)
> (In reply to Joe Walker [:jwalker] from comment #10)
> > So the contextual fragment thing isn't going to work with html I guess. It
> > certainly makes sense to use innerHtml if it's available rather than as a
> > default. We'd probably need to test for innerHtml using ('innerHtml' in
> > elem) to avoid calling a potentially expensive getter.
> >
> > Or we could look at the clause at the top of the function, perhaps that can
> > be persuaded to work?
> I am sorry Joe , but I don't follow you on this . Are you suggesting that
> when in xml mode we do something else instead of var child =
> range.createContextualFragment(contents).firstChild; ?
I'm suggesting trying flipping the sense of the if statement so we try to use innerHtml before trying the createContextualFragment route.
i.e. Not:
if (xmlMode) { ... createContextualFragment ... }
else { ... innerHtml ... }
But instead:
if ("innerHtml" in elem) { ... innerHtml ... }
else { ... createContextualFragment ... }
Assignee | ||
Comment 13•13 years ago
|
||
thanks for the clarification.After making that modification , how do I test the changes ?
Reporter | ||
Comment 14•13 years ago
|
||
(In reply to saran from comment #13)
> thanks for the clarification.After making that modification , how do I test
> the changes ?
Obviously your command is a good place to start. Does that work?
The next step would be to run the test suite to make we've not broken anything.
Assignee | ||
Comment 15•13 years ago
|
||
Hi Joe... I tried the command now... I get :
First
Second
This time no error...
Assignee | ||
Comment 16•13 years ago
|
||
Attachment #666991 -
Flags: review?(jwalker)
Reporter | ||
Updated•13 years ago
|
Assignee: nobody → ksk.3393
Reporter | ||
Comment 17•12 years ago
|
||
Comment on attachment 666991 [details] [diff] [review]
Flipped the if else part as mentioned
Review of attachment 666991 [details] [diff] [review]:
-----------------------------------------------------------------
Please could you do some simple formatting before we commit this? We generally use 2 space tabs, and try to avoid trailing spaces?
Thanks.
Attachment #666991 -
Flags: review?(jwalker)
Assignee | ||
Comment 18•12 years ago
|
||
Attachment #667062 -
Flags: review?(jwalker)
Reporter | ||
Comment 19•12 years ago
|
||
Comment on attachment 667062 [details] [diff] [review]
Patch with correct formatting
Review of attachment 667062 [details] [diff] [review]:
-----------------------------------------------------------------
There are still several spaces at the ends of lines, which I can remove as I integrate this if you'd like.
Most editors have some way to display spaces at the ends of lines, and using them to remove trailing spaces helps people to focus on the actual changes to a file to be able to ignore changes in whitespace.
Thanks for the patch.
Attachment #667062 -
Flags: review?(jwalker) → review+
Reporter | ||
Updated•12 years ago
|
Attachment #666991 -
Attachment is obsolete: true
Reporter | ||
Comment 20•12 years ago
|
||
This patch properly corrects the formatting, and adds the required attribution headers.
Attachment #667062 -
Attachment is obsolete: true
Reporter | ||
Comment 21•12 years ago
|
||
Green on try:
https://tbpl.mozilla.org/?tree=Try&rev=694fce8f252d
Landing in fx-team:
https://tbpl.mozilla.org/?tree=Fx-Team&rev=e5d8ddb1e35f
Whiteboard: [good first bug][mentor=jwalker] → [fixed-in-fx-team][good first bug][mentor=jwalker]
Comment 22•12 years ago
|
||
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Whiteboard: [fixed-in-fx-team][good first bug][mentor=jwalker] → [good first bug][mentor=jwalker]
Target Milestone: Future → Firefox 18
Updated•7 years ago
|
Product: Firefox → DevTools
You need to log in
before you can comment on or make changes to this bug.
Description
•