JSContextBackForwardCache1.html 275 B

1234567891011
  1. <body>
  2. <div id="test-div"></div>
  3. <script>
  4. var testDiv = document.getElementById("test-div");
  5. if (!testDiv.myCustomProperty)
  6. insertMyCustomProperty(testDiv);
  7. else
  8. checkForMyCustomProperty(testDiv);
  9. </script>
  10. </body>