| Index: Source/core/dom/ProcessingInstruction.idl
|
| diff --git a/Source/core/dom/ProcessingInstruction.idl b/Source/core/dom/ProcessingInstruction.idl
|
| index c082c1035109313123481eca3c09b6b7e0b60e1e..048f210598a45d8f499b1009d4970704e964a178 100644
|
| --- a/Source/core/dom/ProcessingInstruction.idl
|
| +++ b/Source/core/dom/ProcessingInstruction.idl
|
| @@ -18,13 +18,13 @@
|
| * Boston, MA 02110-1301, USA.
|
| */
|
|
|
| -interface ProcessingInstruction : CharacterData {
|
| -
|
| - // DOM Level 1
|
| +// https://dom.spec.whatwg.org/#interface-processinginstruction
|
|
|
| +interface ProcessingInstruction : CharacterData {
|
| + // FIXME: target should not be nullable.
|
| readonly attribute DOMString? target;
|
|
|
| - // interface LinkStyle from DOM Level 2 Style Sheets
|
| + // FIXME: CharacterData.sheet is not part of any modern spec.
|
| + // https://www.w3.org/Bugs/Public/show_bug.cgi?id=28068
|
| readonly attribute StyleSheet sheet;
|
| };
|
| -
|
|
|