diff options
author | Dave Methvin <dave.methvin@gmail.com> | 2014-04-30 10:43:39 -0400 |
---|---|---|
committer | Dave Methvin <dave.methvin@gmail.com> | 2014-04-30 10:46:26 -0400 |
commit | b8133e282ceebf502c7c08d849b176a929c9c450 (patch) | |
tree | 4f3203dedb46729cdf59a0fa44eaf759f3f1f33f /test/unit/data.js | |
parent | c34dbf5a8d135e0f873ab7a76d1c8f8e316f31e4 (diff) | |
download | jquery-b8133e282ceebf502c7c08d849b176a929c9c450.tar.gz jquery-b8133e282ceebf502c7c08d849b176a929c9c450.zip |
Data: Work around IE11 bug with onpageshow attribute
Fixes #14894
Diffstat (limited to 'test/unit/data.js')
-rw-r--r-- | test/unit/data.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/unit/data.js b/test/unit/data.js index b63c79b92..d3ae818ed 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -801,3 +801,9 @@ test("Check proper data removal of non-element descendants nodes (#8335)", 1, fu ok( !text.data("test"), "Be sure data is not stored in non-element" ); }); + +testIframeWithCallback( "enumerate data attrs on body (#14894)", "data/dataAttrs.html", function( result ) { + expect(1); + + equal(result, "ok", "enumeration of data- attrs on body" ); +});
\ No newline at end of file |