Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
seleniumhq
GitHub Repository: seleniumhq/selenium
Path: blob/trunk/third_party/closure/goog/dom/pattern/abstractpattern.js
2868 views
1
// Copyright 2007 The Closure Library Authors. All Rights Reserved.
2
//
3
// Licensed under the Apache License, Version 2.0 (the "License");
4
// you may not use this file except in compliance with the License.
5
// You may obtain a copy of the License at
6
//
7
// http://www.apache.org/licenses/LICENSE-2.0
8
//
9
// Unless required by applicable law or agreed to in writing, software
10
// distributed under the License is distributed on an "AS-IS" BASIS,
11
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
// See the License for the specific language governing permissions and
13
// limitations under the License.
14
15
/**
16
* @fileoverview DOM pattern base class.
17
*
18
* @author [email protected] (Robby Walker)
19
*/
20
21
goog.provide('goog.dom.pattern.AbstractPattern');
22
23
goog.require('goog.dom.pattern.MatchType');
24
25
26
27
/**
28
* Base pattern class for DOM matching.
29
*
30
* @constructor
31
*/
32
goog.dom.pattern.AbstractPattern = function() {
33
/**
34
* The first node matched by this pattern.
35
* @type {Node}
36
*/
37
this.matchedNode = null;
38
};
39
40
41
/**
42
* Reset any internal state this pattern keeps.
43
*/
44
goog.dom.pattern.AbstractPattern.prototype.reset = function() {
45
// The base implementation does nothing.
46
};
47
48
49
/**
50
* Test whether this pattern matches the given token.
51
*
52
* @param {Node} token Token to match against.
53
* @param {goog.dom.TagWalkType} type The type of token.
54
* @return {goog.dom.pattern.MatchType} {@code MATCH} if the pattern matches.
55
*/
56
goog.dom.pattern.AbstractPattern.prototype.matchToken = function(token, type) {
57
return goog.dom.pattern.MatchType.NO_MATCH;
58
};
59
60