Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: LayoutTests/dom/svg/level3/xpath/XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR.js

Issue 756123002: Remove tabs and trailing whitspace in LayoutTests/dom/.../*.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 // expose test function names 12 // expose test function names
15 function exposeTestFunctionNames() 13 function exposeTestFunctionNames()
16 { 14 {
17 return ['XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR']; 15 return ['XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR'];
18 } 16 }
19 17
20 var docsLoaded = -1000000; 18 var docsLoaded = -1000000;
21 var builder = null; 19 var builder = null;
22 20
23 // 21 //
24 // This function is called by the testing framework before 22 // This function is called by the testing framework before
25 // running the test suite. 23 // running the test suite.
26 // 24 //
27 // If there are no configuration exceptions, asynchronous 25 // If there are no configuration exceptions, asynchronous
28 // document loading is started. Otherwise, the status 26 // document loading is started. Otherwise, the status
29 // is set to complete and the exception is immediately 27 // is set to complete and the exception is immediately
30 // raised when entering the body of the test. 28 // raised when entering the body of the test.
31 // 29 //
32 function setUpPage() { 30 function setUpPage() {
33 setUpPageStatus = 'running'; 31 setUpPageStatus = 'running';
34 try { 32 try {
35 // 33 //
36 // creates test document builder, may throw exception 34 // creates test document builder, may throw exception
37 // 35 //
38 builder = createConfiguredBuilder(); 36 builder = createConfiguredBuilder();
39 37
40 docsLoaded = 0; 38 docsLoaded = 0;
41 39
42 var docRef = null; 40 var docRef = null;
43 if (typeof(this.doc) != 'undefined') { 41 if (typeof(this.doc) != 'undefined') {
44 docRef = this.doc; 42 docRef = this.doc;
45 } 43 }
46 docsLoaded += preload(docRef, "doc", "staffNS"); 44 docsLoaded += preload(docRef, "doc", "staffNS");
47 45
48 if (docsLoaded == 1) { 46 if (docsLoaded == 1) {
49 setUpPageStatus = 'complete'; 47 setUpPageStatus = 'complete';
50 } 48 }
51 } catch(ex) { 49 } catch(ex) {
52 » catchInitializationError(builder, ex); 50 catchInitializationError(builder, ex);
53 setUpPageStatus = 'complete'; 51 setUpPageStatus = 'complete';
54 } 52 }
55 } 53 }
56 54
57
58
59 // 55 //
60 // This method is called on the completion of 56 // This method is called on the completion of
61 // each asychronous load started in setUpTests. 57 // each asychronous load started in setUpTests.
62 // 58 //
63 // When every synchronous loaded document has completed, 59 // When every synchronous loaded document has completed,
64 // the page status is changed which allows the 60 // the page status is changed which allows the
65 // body of the test to be executed. 61 // body of the test to be executed.
66 function loadComplete() { 62 function loadComplete() {
67 if (++docsLoaded == 1) { 63 if (++docsLoaded == 1) {
68 setUpPageStatus = 'complete'; 64 setUpPageStatus = 'complete';
69 } 65 }
70 } 66 }
71 67
72
73 /** 68 /**
74 * 69 *
75 The XPathEvaluator can create a "XPathExpression" using the method 70 The XPathEvaluator can create a "XPathExpression" using the method
76 "createExpression(expression, resolver)". 71 "createExpression(expression, resolver)".
77 72
78 Retrieve the DOM document on which the 73 Retrieve the DOM document on which the
79 'createExpression("12a", null)' method is 74 'createExpression("12a", null)' method is
80 invoked with the document element. The method should fail to create 75 invoked with the document element. The method should fail to create
81 pre-compiled expression and throws 76 pre-compiled expression and throws
82 SYNTAX_ERR 77 SYNTAX_ERR
83 since "12a" is not an XPath expression. 78 since "12a" is not an XPath expression.
84 79
85 * @author Philippe Le Hégaret 80 * @author Philippe Le Hégaret
86 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvalua tor-createExpression 81 * @see http://www.w3.org/TR/2003/CR-DOM-Level-3-XPath-20030331/xpath#XPathEvalua tor-createExpression
87 */ 82 */
88 function XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR() { 83 function XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR() {
89 var success; 84 var success;
90 if(checkInitialization(builder, "XPathEvaluator_createExpression_INVALID_EXP RESSION_ERR") != null) return; 85 if(checkInitialization(builder, "XPathEvaluator_createExpression_INVALID_EXP RESSION_ERR") != null) return;
91 var nullNSResolver = null; 86 var nullNSResolver = null;
92 87
93 var doc; 88 var doc;
94 var xpEvaluator; 89 var xpEvaluator;
95 var exp; 90 var exp;
96 91
97 var docRef = null; 92 var docRef = null;
98 if (typeof(this.doc) != 'undefined') { 93 if (typeof(this.doc) != 'undefined') {
99 docRef = this.doc; 94 docRef = this.doc;
100 } 95 }
101 doc = load(docRef, "doc", "staffNS"); 96 doc = load(docRef, "doc", "staffNS");
102 xpEvaluator = createXPathEvaluator(doc); 97 xpEvaluator = createXPathEvaluator(doc);
103 98
104 » { 99 {
105 » » success = false; 100 success = false;
106 » » try { 101 try {
107 exp = xpEvaluator.createExpression("12a",nullNSResolver); 102 exp = xpEvaluator.createExpression("12a",nullNSResolver);
108 } 103 }
109 » » catch(ex) { 104 catch(ex) {
110 success = ex.name == 'SyntaxError'; 105 success = ex.name == 'SyntaxError';
111 » » } 106 }
112 » » assertTrue("throw_INVALID_EXPRESSION_ERR",success); 107 assertTrue("throw_INVALID_EXPRESSION_ERR",success);
113 » } 108 }
114 109
115 } 110 }
116 111
117
118
119
120 function runTest() { 112 function runTest() {
121 XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR(); 113 XPathEvaluator_createExpression_INVALID_EXPRESSION_ERR();
122 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698