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 11:00:14 -0400 |
commit | 062a7d63e4d1a55d72d64152381d93d60b0231e4 (patch) | |
tree | 86ebc61c07bf09a6a02105ce3740ce8c1afd19fe /test | |
parent | f833c9af573462cdec5637db8e58015b288a0a7e (diff) | |
download | jquery-062a7d63e4d1a55d72d64152381d93d60b0231e4.tar.gz jquery-062a7d63e4d1a55d72d64152381d93d60b0231e4.zip |
Data: Work around IE11 bug with onpageshow attribute
Fixes #14894
(cherry picked from commit b8133e282ceebf502c7c08d849b176a929c9c450)
Conflicts:
src/data.js
test/unit/data.js
Diffstat (limited to 'test')
-rw-r--r-- | test/data/data/dataAttrs.html | 16 | ||||
-rw-r--r-- | test/unit/data.js | 6 |
2 files changed, 22 insertions, 0 deletions
diff --git a/test/data/data/dataAttrs.html b/test/data/data/dataAttrs.html new file mode 100644 index 000000000..5e6e442a6 --- /dev/null +++ b/test/data/data/dataAttrs.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + <title>IE11 onpageshow strangeness (#14894)</title> + <script src="../../jquery.js"></script> + <script> + $(function(){ + window.parent.iframeCallback( $( "body" ).data().result ); + }); + </script> +</head> +<body x-what="test" data-result="ok" onload="x=1" onpageshow="x=1"> + Test for #14894 +</body> +</html> diff --git a/test/unit/data.js b/test/unit/data.js index 05fc5f193..14acd427e 100644 --- a/test/unit/data.js +++ b/test/unit/data.js @@ -677,3 +677,9 @@ test( "JSON data- attributes can have newlines", function() { equal( x.data("some").foo, "bar", "got a JSON data- attribute with spaces" ); x.remove(); }); + +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 |