Implement ProcessingInstruction DOM interface

Spec:
http://dom.spec.whatwg.org/#interface-processinginstruction

Closes #1619.
This commit is contained in:
Bruno de Oliveira Abinader 2014-02-05 11:14:47 -04:00
parent 5a7d22c437
commit aa4b5bb948
8 changed files with 153 additions and 56 deletions

View file

@ -0,0 +1,12 @@
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* The origin of this IDL file is
* http://dom.spec.whatwg.org/#interface-processinginstruction
*/
interface ProcessingInstruction : CharacterData {
readonly attribute DOMString target;
};