Last active
August 4, 2016 09:45
-
-
Save SiZapPaaiGwat/9d40cb23f0370fa4fa0a7387bd407164 to your computer and use it in GitHub Desktop.
Firefox iframe bug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// html content | |
<header>header</header> | |
// this iframe will be displayed | |
<iframe src="./index.html?anyString#/create"></iframe> | |
<footer>footer</footer> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// html content | |
<header>header</header> | |
// this iframe will be empty content even we output it with js | |
<iframe src="./index.html#/create"></iframe> | |
<footer>footer</footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment