mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:35:07 +00:00
LibWeb: Implement quirks mode detection
This allows us to determine which mode to render the page in. Exposes "doctype" and "compatMode" on Document. Exposes "name", "publicId" and "systemId" on DocumentType.
This commit is contained in:
parent
a5ecb9bd6b
commit
19d6884529
13 changed files with 196 additions and 6 deletions
|
@ -85,6 +85,8 @@ public:
|
|||
private:
|
||||
const char* insertion_mode_name() const;
|
||||
|
||||
QuirksMode which_quirks_mode(const HTMLToken&) const;
|
||||
|
||||
void handle_initial(HTMLToken&);
|
||||
void handle_before_html(HTMLToken&);
|
||||
void handle_before_head(HTMLToken&);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue