| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 Copyright © 2001-2004 World Wide Web Consortium, | 2 Copyright © 2001-2004 World Wide Web Consortium, |
| 4 (Massachusetts Institute of Technology, European Research Consortium | 3 (Massachusetts Institute of Technology, European Research Consortium |
| 5 for Informatics and Mathematics, Keio University). All | 4 for Informatics and Mathematics, Keio University). All |
| 6 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the | 5 Rights Reserved. This work is distributed under the W3C® Software License [1] i
n the |
| 7 hope that it will be useful, but WITHOUT ANY WARRANTY; without even | 6 hope that it will be useful, but WITHOUT ANY WARRANTY; without even |
| 8 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | 7 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 9 | 8 |
| 10 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 | 9 [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231 |
| 11 */ | 10 */ |
| 12 | 11 |
| 13 | |
| 14 | |
| 15 /** | 12 /** |
| 16 * Gets URI that identifies the test. | 13 * Gets URI that identifies the test. |
| 17 * @return uri identifier of test | 14 * @return uri identifier of test |
| 18 */ | 15 */ |
| 19 function getTargetURI() { | 16 function getTargetURI() { |
| 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature01"; | 17 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature01"; |
| 21 } | 18 } |
| 22 | 19 |
| 23 var docsLoaded = -1000000; | 20 var docsLoaded = -1000000; |
| 24 var builder = null; | 21 var builder = null; |
| (...skipping 10 matching lines...) Expand all Loading... |
| 35 function setUpPage() { | 32 function setUpPage() { |
| 36 setUpPageStatus = 'running'; | 33 setUpPageStatus = 'running'; |
| 37 try { | 34 try { |
| 38 // | 35 // |
| 39 // creates test document builder, may throw exception | 36 // creates test document builder, may throw exception |
| 40 // | 37 // |
| 41 builder = createConfiguredBuilder(); | 38 builder = createConfiguredBuilder(); |
| 42 checkFeature("XML", null); | 39 checkFeature("XML", null); |
| 43 | 40 |
| 44 docsLoaded = 0; | 41 docsLoaded = 0; |
| 45 | 42 |
| 46 if (docsLoaded == 0) { | 43 if (docsLoaded == 0) { |
| 47 setUpPageStatus = 'complete'; | 44 setUpPageStatus = 'complete'; |
| 48 } | 45 } |
| 49 } catch(ex) { | 46 } catch(ex) { |
| 50 » catchInitializationError(builder, ex); | 47 catchInitializationError(builder, ex); |
| 51 setUpPageStatus = 'complete'; | 48 setUpPageStatus = 'complete'; |
| 52 } | 49 } |
| 53 } | 50 } |
| 54 | 51 |
| 55 | |
| 56 | |
| 57 // | 52 // |
| 58 // This method is called on the completion of | 53 // This method is called on the completion of |
| 59 // each asychronous load started in setUpTests. | 54 // each asychronous load started in setUpTests. |
| 60 // | 55 // |
| 61 // When every synchronous loaded document has completed, | 56 // When every synchronous loaded document has completed, |
| 62 // the page status is changed which allows the | 57 // the page status is changed which allows the |
| 63 // body of the test to be executed. | 58 // body of the test to be executed. |
| 64 function loadComplete() { | 59 function loadComplete() { |
| 65 if (++docsLoaded == 0) { | 60 if (++docsLoaded == 0) { |
| 66 setUpPageStatus = 'complete'; | 61 setUpPageStatus = 'complete'; |
| 67 } | 62 } |
| 68 } | 63 } |
| 69 | 64 |
| 70 | |
| 71 /** | 65 /** |
| 72 * | 66 * |
| 73 DOMImplementation.hasFeature("XML", "3.0") should return true. | 67 DOMImplementation.hasFeature("XML", "3.0") should return true. |
| 74 | 68 |
| 75 * @author Curt Arnold | 69 * @author Curt Arnold |
| 76 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-5CED94D7 | 70 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#ID-5CED94D7 |
| 77 */ | 71 */ |
| 78 function hasFeature01() { | 72 function hasFeature01() { |
| 79 var success; | 73 var success; |
| 80 if(checkInitialization(builder, "hasFeature01") != null) return; | 74 if(checkInitialization(builder, "hasFeature01") != null) return; |
| 81 var impl; | 75 var impl; |
| 82 var state; | 76 var state; |
| 83 impl = getImplementation(); | 77 impl = getImplementation(); |
| 84 state = impl.hasFeature("xMl","3.0"); | 78 state = impl.hasFeature("xMl","3.0"); |
| 85 assertTrue("hasXML30",state); | 79 assertTrue("hasXML30",state); |
| 86 | 80 |
| 87 } | 81 } |
| 88 | 82 |
| 89 | |
| 90 | |
| 91 | |
| 92 function runTest() { | 83 function runTest() { |
| 93 hasFeature01(); | 84 hasFeature01(); |
| 94 } | 85 } |
| OLD | NEW |