| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 Apple Inc. All rights reserved. | 3 * Copyright (C) 2013 Apple Inc. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions | 6 * modification, are permitted provided that the following conditions |
| 7 * are met: | 7 * are met: |
| 8 * | 8 * |
| 9 * 1. Redistributions of source code must retain the above copyright | 9 * 1. Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 [ImplementedInPrivateScript] void setIntegerToDocument(Document document, sh
ort value); | 294 [ImplementedInPrivateScript] void setIntegerToDocument(Document document, sh
ort value); |
| 295 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document)
; | 295 [ImplementedInPrivateScript] short getIntegerFromDocument(Document document)
; |
| 296 [ImplementedInPrivateScript] Node createElement(Document document); | 296 [ImplementedInPrivateScript] Node createElement(Document document); |
| 297 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2); | 297 [ImplementedInPrivateScript] void appendChild(Node node1, Node node2); |
| 298 [ImplementedInPrivateScript] Node firstChild(Node node); | 298 [ImplementedInPrivateScript] Node firstChild(Node node); |
| 299 [ImplementedInPrivateScript] Node nextSibling(Node node); | 299 [ImplementedInPrivateScript] Node nextSibling(Node node); |
| 300 [ImplementedInPrivateScript] DOMString innerHTML(Node node); | 300 [ImplementedInPrivateScript] DOMString innerHTML(Node node); |
| 301 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string); | 301 [ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string); |
| 302 [ImplementedInPrivateScript] void addClickListener(Node node); | 302 [ImplementedInPrivateScript] void addClickListener(Node node); |
| 303 [ImplementedInPrivateScript] void clickNode(Document document, Node node); | 303 [ImplementedInPrivateScript] void clickNode(Document document, Node node); |
| 304 [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute
; |
| 305 [ImplementedInPrivateScript] attribute short shortAttribute; |
| 306 [ImplementedInPrivateScript] attribute DOMString stringAttribute; |
| 307 [ImplementedInPrivateScript] attribute Node nodeAttribute; |
| 304 }; | 308 }; |
| OLD | NEW |