summaryrefslogtreecommitdiff
path: root/Libraries/LibWeb/DOM/Document.idl
AgeCommit message (Collapse)Author
2020-07-21LibWeb: Implement quirks mode detectionLuke
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.
2020-06-26LibWeb: Add Document.getElementsByTagName()Andreas Kling
2020-06-21LibWeb: Expose Document.body to the webAndreas Kling
Also, make it return a HTMLElement since Document.body should actually return the frameset element in a frame-based document.
2020-06-21LibWeb: Expose Document.createElement() to the webAndreas Kling
2020-06-21LibWeb: Start generating JS wrappers from (simplified) WebIDL :^)Andreas Kling
This patch introduces a hackish but functional IDL parser and uses it to generate the JS bindings for Node and Document. We'll see how far this simple parser takes us. The important thing right now is generating code, not being a perfect IDL parser. :^)