mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
062a7d63e4
Fixes #14894
(cherry picked from commit b8133e282c
)
Conflicts:
src/data.js
test/unit/data.js
17 lines
412 B
HTML
17 lines
412 B
HTML
<!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>
|