mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:37:36 +00:00
LibWeb: Implement document.createCDATASection()
This commit is contained in:
parent
ee6b0e144a
commit
02c2b1e67e
6 changed files with 45 additions and 1 deletions
|
@ -1,5 +1,6 @@
|
|||
#import <Animations/DocumentTimeline.idl>
|
||||
#import <CSS/StyleSheetList.idl>
|
||||
#import <DOM/CDATASection.idl>
|
||||
#import <DOM/Comment.idl>
|
||||
#import <DOM/DOMImplementation.idl>
|
||||
#import <DOM/DocumentFragment.idl>
|
||||
|
@ -80,6 +81,7 @@ interface Document : Node {
|
|||
[CEReactions, NewObject] Element createElementNS([FlyString] DOMString? namespace, DOMString qualifiedName, optional (DOMString or ElementCreationOptions) options = {});
|
||||
DocumentFragment createDocumentFragment();
|
||||
Text createTextNode(DOMString data);
|
||||
[NewObject] CDATASection createCDATASection(DOMString data);
|
||||
Comment createComment(DOMString data);
|
||||
[NewObject] ProcessingInstruction createProcessingInstruction(DOMString target, DOMString data);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue