WML <fieldset> element should be supported.
Created attachment 26202 [details] Initial patch
Created attachment 26203 [details] Layout test results
Comment on attachment 26202 [details] Initial patch Only part I wonder about is that by changing the argument to Node* on the RenderFieldset constructor, someone might accidentally drop an unexpected type in there one day. I don't think that's a reason for r- though.
Comment on attachment 26203 [details] Layout test results r=me
Alexey proposed to rename WMLDummyLegendElement to WMLInsertedLegendElement. Going to take care of this, before landing. Thanks for the quick review, guys.
(In reply to comment #3) > (From update of attachment 26202 [details] [review]) > Only part I wonder about is that by changing the argument to Node* on the > RenderFieldset constructor, someone might accidentally drop an unexpected type > in there one day. I don't think that's a reason for r- though. It's a bit weird that RenderFieldset actually took a HTMLForm*Element - this is contrary to the other RenderObject-derived classes, that all take Node*. There are no casts to HTMLForm*Element, so it's just safe.
Landed in r39436.