Closed
Bug 738440
Opened 13 years ago
Closed 13 years ago
Support queryCommandState("stylewithcss")
Categories
(Core :: DOM: Editor, enhancement)
Core
DOM: Editor
Tracking
()
RESOLVED
FIXED
mozilla14
People
(Reporter: ayg, Assigned: ayg)
Details
Attachments
(1 file, 1 obsolete file)
6.06 KB,
patch
|
ehsan.akhgari
:
review+
|
Details | Diff | Splinter Review |
WebKit supports it, and it makes sense, so I specced it. The spec requires non-support of state for useCSS.
Assignee | ||
Comment 1•13 years ago
|
||
I think the old behavior was just a bug. The code set STATE_ATTRIBUTE to a boolean, but it's supposed to be a string. So when QueryCommandValue() tried retrieving "state_attribute" as a string, it found nothing. And when QueryCommandState() tried retrieving "state_all" as a boolean, it also found nothing. All this just demonstrates that the code here is sufficiently confusing that it baffled the people who wrote it . . .
I had to add a special case for useCSS, because the spec says queryCommandState() shouldn't be supported for it. It's legacy cruft, and I want to support as few features as possible for it. Plus, we'd need a special case for it anyway, because we'd have to invert the return value if it were to make any sense.
Attachment #608478 -
Flags: review?(ehsan)
Assignee | ||
Updated•13 years ago
|
Whiteboard: [autoland-try:-u all]
Updated•13 years ago
|
Whiteboard: [autoland-try:-u all] → [autoland-in-queue]
Comment 2•13 years ago
|
||
Autoland Patchset:
Patches: 608478
Branch: mozilla-central => try
Destination: http://hg.mozilla.org/try/pushloghtml?changeset=4c9d8f3ff72d
Try run started, revision 4c9d8f3ff72d. To cancel or monitor the job, see: https://tbpl.mozilla.org/?tree=Try&rev=4c9d8f3ff72d
Comment 3•13 years ago
|
||
Comment on attachment 608478 [details] [diff] [review]
Patch v1
Review of attachment 608478 [details] [diff] [review]:
-----------------------------------------------------------------
r=me, but I think you should also modify http://mxr.mozilla.org/comm-central/source/mozilla/content/html/content/test/test_bug408231.html.
Attachment #608478 -
Flags: review?(ehsan) → review+
Comment 4•13 years ago
|
||
Try run for 4c9d8f3ff72d is complete.
Detailed breakdown of the results available here:
https://tbpl.mozilla.org/?tree=Try&rev=4c9d8f3ff72d
Results (out of 219 total builds):
exception: 2
success: 171
warnings: 32
failure: 14
Builds (or logs if builds failed) available at:
http://ftp.mozilla.org/pub/mozilla.org/firefox/try-builds/autolanduser@mozilla.com-4c9d8f3ff72d
Updated•13 years ago
|
Whiteboard: [autoland-in-queue]
Assignee | ||
Comment 5•13 years ago
|
||
Same as last patch, but with test_bug408231.html fixed. I wrote the test based on bug 738366 being fixed, so it should be false rather than true. Thus bug 738366 needs to land first, or at the same time. This patch will conflict with the bug 738385 changes, but that's okay, it should be easy to merge.
(I don't know why queryCommandValue("stylewithcss") is suddenly returning the empty string instead of throwing, but it's moot, because it will do that anyway after bug 738385 lands.)
Attachment #608478 -
Attachment is obsolete: true
Attachment #608809 -
Flags: review?(ehsan)
Updated•13 years ago
|
Attachment #608809 -
Flags: review?(ehsan) → review+
Assignee | ||
Comment 6•13 years ago
|
||
Flags: in-testsuite+
Target Milestone: --- → mozilla14
Comment 7•13 years ago
|
||
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•