Skip to content

Commit 88b24f6

Browse files
committed
offsetX and offsetY are now implemented in FireFox - remove from black list
1 parent 4980e24 commit 88b24f6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

tasks/test_syntax.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@ function assertSrcContents() {
112112
// Forbidden in IE in any context
113113
var IE_BLACK_LIST = ['classList'];
114114

115-
// not implemented in FF, or inconsistent with others
116-
var FF_BLACK_LIST = ['offsetX', 'offsetY'];
117-
118115
// require'd built-in modules
119116
var BUILTINS = ['events'];
120117

@@ -151,8 +148,6 @@ function assertSrcContents() {
151148
if(!(isSunburstOrTreemap && isLinkedToObject)) {
152149
logs.push(file + ' : contains .' + lastPart + ' (IE failure in SVG)');
153150
}
154-
} else if(FF_BLACK_LIST.indexOf(lastPart) !== -1) {
155-
logs.push(file + ' : contains .' + lastPart + ' (FF failure)');
156151
}
157152
} else if(node.type === 'Identifier' && node.source() === 'getComputedStyle') {
158153
if(node.parent.source() !== 'window.getComputedStyle') {

0 commit comments

Comments
 (0)