Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
spellcheck returns undefined for IE < 10
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Feb 10, 2016
1 parent 98aa08b commit 2b76987
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions javascript/webdriver/test/atoms/element_test.html
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,9 @@
if (goog.userAgent.WEBKIT) {
defaultSpellcheck = 'true';
}
if (goog.userAgent.IE && !goog.userAgent.product.isVersion(10)) {
defaultSpellcheck = 'undefined';
}
assertEquals(defaultSpellcheck, webdriver.atoms.element.getAttribute(el, 'spellcheck'));
}

Expand Down

0 comments on commit 2b76987

Please sign in to comment.