diff options
Diffstat (limited to 'test/testabilityPatch.js')
| -rw-r--r-- | test/testabilityPatch.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testabilityPatch.js b/test/testabilityPatch.js index 0cc85a8c..5bcee3fe 100644 --- a/test/testabilityPatch.js +++ b/test/testabilityPatch.js @@ -215,7 +215,7 @@ function sortedHtml(element, showNgClass) { attr.name !='style' && attr.name.substr(0, 6) != 'jQuery') { // in IE we need to check for all of these. - if (!/ng-\d+/.exec(attr.name)) + if (!/ng-\d+/.exec(attr.name) && attr.name != 'getElementById') attrs.push(' ' + attr.name + '="' + attr.value + '"'); } } |
