bug277724_iframe1.html 797 B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE HTML>
  2. <html>
  3. <!-- Use an unload handler to prevent bfcache from messing with us -->
  4. <body onunload="parent.childUnloaded = true;">
  5. <select id="select">
  6. <option>aaa</option>
  7. <option>bbbb</option>
  8. </select>
  9. <textarea id="textarea">
  10. </textarea>
  11. <input type="text" id="text">
  12. <input type="password" id="password">
  13. <input type="checkbox" id="checkbox">
  14. <input type="radio" id="radio">
  15. <input type="image" id="image">
  16. <input type="submit" id="submit">
  17. <input type="reset" id="reset">
  18. <input type="button" id="button input">
  19. <input type="hidden" id="hidden">
  20. <input type="file" id="file">
  21. <button type="submit" id="submit button"></button>
  22. <button type="reset" id="reset button"></button>
  23. <button type="button" id="button"></button>
  24. </body>
  25. </html>