polyfill.classlist-uncompressed.js
10.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
/**
* Polyfill service v3.13.0
* For detailed credits and licence information see http://github.com/financial-times/polyfill-service.
*
* Features requested: Element.prototype.classList
*
* - Object.defineProperty, License: CC0 (required by "Element.prototype.classList")
* - _DOMTokenList, License: CC0 (required by "Element.prototype.classList")
* - Document, License: CC0 (required by "Element", "Element.prototype.classList")
* - Element, License: CC0 (required by "Element.prototype.classList")
* - Element.prototype.classList, License: CC0
*
* @build https://cdn.polyfill.io/v2/polyfill.js?features=Element.prototype.classList&flags=always,gated
*
* @copyright Copyright (c) 2016 Financial Times
* @license MIT License, https://github.com/Financial-Times/polyfill-service/blob/master/LICENSE.md
*/
(function(undefined) {
if (!(// In IE8, defineProperty could only act on DOM elements, so full support
// for the feature requires the ability to set a property on an arbitrary object
'defineProperty' in Object && (function() {
try {
var a = {};
Object.defineProperty(a, 'test', {value:42});
return true;
} catch(e) {
return false
}
}()))) {
// Object.defineProperty
(function (nativeDefineProperty) {
var supportsAccessors = Object.prototype.hasOwnProperty('__defineGetter__');
var ERR_ACCESSORS_NOT_SUPPORTED = 'Getters & setters cannot be defined on this javascript engine';
var ERR_VALUE_ACCESSORS = 'A property cannot both have accessors and be writable or have a value';
Object.defineProperty = function defineProperty(object, property, descriptor) {
// Where native support exists, assume it
if (nativeDefineProperty && (object === window || object === document || object === Element.prototype || object instanceof Element)) {
return nativeDefineProperty(object, property, descriptor);
}
if (object === null || !(object instanceof Object || typeof object === 'object')) {
throw new TypeError('Object must be an object (Object.defineProperty polyfill)');
}
if (!(descriptor instanceof Object)) {
throw new TypeError('Descriptor must be an object (Object.defineProperty polyfill)');
}
var propertyString = String(property);
var hasValueOrWritable = 'value' in descriptor || 'writable' in descriptor;
var getterType = 'get' in descriptor && typeof descriptor.get;
var setterType = 'set' in descriptor && typeof descriptor.set;
// handle descriptor.get
if (getterType) {
if (getterType !== 'function') {
throw new TypeError('Getter expected a function (Object.defineProperty polyfill)');
}
if (!supportsAccessors) {
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
}
if (hasValueOrWritable) {
throw new TypeError(ERR_VALUE_ACCESSORS);
}
object.__defineGetter__(propertyString, descriptor.get);
} else {
object[propertyString] = descriptor.value;
}
// handle descriptor.set
if (setterType) {
if (setterType !== 'function') {
throw new TypeError('Setter expected a function (Object.defineProperty polyfill)');
}
if (!supportsAccessors) {
throw new TypeError(ERR_ACCESSORS_NOT_SUPPORTED);
}
if (hasValueOrWritable) {
throw new TypeError(ERR_VALUE_ACCESSORS);
}
object.__defineSetter__(propertyString, descriptor.set);
}
// OK to define value unconditionally - if a getter has been specified as well, an error would be thrown above
if ('value' in descriptor) {
object[propertyString] = descriptor.value;
}
return object;
};
}(Object.defineProperty));
}
// _DOMTokenList
var _DOMTokenList = (function () { // eslint-disable-line no-unused-vars
function tokenize(token) {
if (/^-?[_a-zA-Z]+[_a-zA-Z0-9-]*$/.test(token)) {
return String(token);
} else {
throw new Error('InvalidCharacterError: DOM Exception 5');
}
}
function toObject(self) {
for (var index = -1, object = {}, element; element = self[++index];) {
object[element] = true;
}
return object;
}
function fromObject(self, object) {
var array = [], token;
for (token in object) {
if (object[token]) {
array.push(token);
}
}
[].splice.apply(self, [0, self.length].concat(array));
}
var DTL = function() {};
DTL.prototype = {
constructor: DTL,
item: function item(index) {
return this[parseFloat(index)] || null;
},
length: Array.prototype.length,
toString: function toString() {
return [].join.call(this, ' ');
},
add: function add() {
for (var object = toObject(this), index = 0, token; index in arguments; ++index) {
token = tokenize(arguments[index]);
object[token] = true;
}
fromObject(this, object);
},
contains: function contains(token) {
return token in toObject(this);
},
remove: function remove() {
for (var object = toObject(this), index = 0, token; index in arguments; ++index) {
token = tokenize(arguments[index]);
object[token] = false;
}
fromObject(this, object);
},
toggle: function toggle(token) {
var
object = toObject(this),
contains = 1 in arguments ? !arguments[1] : tokenize(token) in object;
object[token] = !contains;
fromObject(this, object);
return !contains;
}
};
return DTL;
}());
if (!("Document" in this)) {
// Document
if (this.HTMLDocument) { // IE8
// HTMLDocument is an extension of Document. If the browser has HTMLDocument but not Document, the former will suffice as an alias for the latter.
this.Document = this.HTMLDocument;
} else {
// Create an empty function to act as the missing constructor for the document object, attach the document object as its prototype. The function needs to be anonymous else it is hoisted and causes the feature detect to prematurely pass, preventing the assignments below being made.
this.Document = this.HTMLDocument = document.constructor = (new Function('return function Document() {}')());
this.Document.prototype = document;
}
}
if (!('Element' in this && 'HTMLElement' in this)) {
// Element
(function () {
// IE8
if (window.Element && !window.HTMLElement) {
window.HTMLElement = window.Element;
return;
}
// create Element constructor
window.Element = window.HTMLElement = new Function('return function Element() {}')();
// generate sandboxed iframe
var vbody = document.appendChild(document.createElement('body'));
var frame = vbody.appendChild(document.createElement('iframe'));
// use sandboxed iframe to replicate Element functionality
var frameDocument = frame.contentWindow.document;
var prototype = Element.prototype = frameDocument.appendChild(frameDocument.createElement('*'));
var cache = {};
// polyfill Element.prototype on an element
var shiv = function (element, deep) {
var
childNodes = element.childNodes || [],
index = -1,
key, value, childNode;
if (element.nodeType === 1 && element.constructor !== Element) {
element.constructor = Element;
for (key in cache) {
value = cache[key];
element[key] = value;
}
}
while (childNode = deep && childNodes[++index]) {
shiv(childNode, deep);
}
return element;
};
var elements = document.getElementsByTagName('*');
var nativeCreateElement = document.createElement;
var interval;
var loopLimit = 100;
prototype.attachEvent('onpropertychange', function (event) {
var
propertyName = event.propertyName,
nonValue = !cache.hasOwnProperty(propertyName),
newValue = prototype[propertyName],
oldValue = cache[propertyName],
index = -1,
element;
while (element = elements[++index]) {
if (element.nodeType === 1) {
if (nonValue || element[propertyName] === oldValue) {
element[propertyName] = newValue;
}
}
}
cache[propertyName] = newValue;
});
prototype.constructor = Element;
if (!prototype.hasAttribute) {
// <Element>.hasAttribute
prototype.hasAttribute = function hasAttribute(name) {
return this.getAttribute(name) !== null;
};
}
// Apply Element prototype to the pre-existing DOM as soon as the body element appears.
function bodyCheck() {
if (!(loopLimit--)) clearTimeout(interval);
if (document.body && !document.body.prototype && /(complete|interactive)/.test(document.readyState)) {
shiv(document, true);
if (interval && document.body.prototype) clearTimeout(interval);
return (!!document.body.prototype);
}
return false;
}
if (!bodyCheck(true)) {
document.onreadystatechange = bodyCheck;
interval = setInterval(bodyCheck, 25);
}
// Apply to any new elements created after load
document.createElement = function createElement(nodeName) {
var element = nativeCreateElement(String(nodeName).toLowerCase());
return shiv(element);
};
// remove sandboxed iframe
document.removeChild(vbody);
}());
}
if (!('document' in this && "classList" in document.documentElement)) {
// Element.prototype.classList
Object.defineProperty(Element.prototype, 'classList', {
configurable: true,
get: function () {
function pull() {
var className = (typeof element.className === "object" ? element.className.baseVal : element.className);
[].splice.apply(classList, [0, classList.length].concat((className || '').replace(/^\s+|\s+$/g, '').split(/\s+/)));
}
function push() {
if (element.attachEvent) {
element.detachEvent('onpropertychange', pull);
}
if (typeof element.className === "object") {
element.className.baseVal = original.toString.call(classList);
} else {
element.className = original.toString.call(classList);
}
if (element.attachEvent) {
element.attachEvent('onpropertychange', pull);
}
}
var element = this;
var original = _DOMTokenList.prototype;
var ClassList = function ClassList() {};
var classList;
ClassList.prototype = new _DOMTokenList;
ClassList.prototype.item = function item(index) { // eslint-disable-line no-unused-vars
return pull(), original.item.apply(classList, arguments);
};
ClassList.prototype.toString = function toString() {
return pull(), original.toString.apply(classList, arguments);
};
ClassList.prototype.add = function add() {
return pull(), original.add.apply(classList, arguments), push();
};
ClassList.prototype.contains = function contains(token) { // eslint-disable-line no-unused-vars
return pull(), original.contains.apply(classList, arguments);
};
ClassList.prototype.remove = function remove() {
return pull(), original.remove.apply(classList, arguments), push();
};
ClassList.prototype.toggle = function toggle(token) {
return pull(), token = original.toggle.apply(classList, arguments), push(), token;
};
classList = new ClassList;
if (element.attachEvent) {
element.attachEvent('onpropertychange', pull);
}
return classList;
}
});
}
})
.call('object' === typeof window && window || 'object' === typeof self && self || 'object' === typeof global && global || {});