RESOLVED FIXED 67678
Remove window.HTMLBlockquoteElement per HTML5 (and DOM Core 1)
https://bugs.webkit.org/show_bug.cgi?id=67678
Summary Remove window.HTMLBlockquoteElement per HTML5 (and DOM Core 1)
Eric Seidel (no email)
Reported 2011-09-06 15:14:40 PDT
Remove window.HTMLBlockquoteElement per HTML5 (and DOM Core 1)
Attachments
Patch (30.12 KB, patch)
2011-09-06 15:17 PDT, Eric Seidel (no email)
darin: review+
darin: commit-queue+
Eric Seidel (no email)
Comment 1 2011-09-06 15:17:13 PDT
Darin Adler
Comment 2 2011-09-06 15:44:25 PDT
Comment on attachment 106497 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=106497&action=review A quick check around Apple didn’t show any examples of software using the DOMHTMLBlockquoteElement class from Objective-C. If there was any, we would need to find a way to keep that working. > Source/WebCore/html/HTMLQuoteElement.cpp:47 > - document()->setUsesBeforeAfterRules(true); > + if (hasTagName(qTag)) > + document()->setUsesBeforeAfterRules(true); It occurs to me that this compiles in assumptions about the html.css file.
Eric Seidel (no email)
Comment 3 2011-09-06 16:25:42 PDT
Eric Seidel (no email)
Comment 4 2011-09-06 16:26:50 PDT
The Gtk bindings use HTMLBlockquoteElement directly iirc, but I don't understand them (nor do I understand why they're not autogenerated). It's possible they are autogenerated, they're just autogenerated into the source directory and they'll do the right thing anyway.
Xan Lopez
Comment 5 2011-09-06 16:39:38 PDT
(In reply to comment #4) > The Gtk bindings use HTMLBlockquoteElement directly iirc, but I don't understand them (nor do I understand why they're not autogenerated). It's possible they are autogenerated, they're just autogenerated into the source directory and they'll do the right thing anyway. That's just some small amount of manual code needed for the generated stuff. You can safely kill it.
Adam Barth
Comment 6 2011-09-06 21:35:31 PDT
Attempted GTK build fix in http://trac.webkit.org/changeset/94636
Eric Seidel (no email)
Comment 7 2011-09-06 23:05:11 PDT
Thank you Dr.
Note You need to log in before you can comment on or make changes to this bug.