649134-2.html 584 B

1234567891011121314151617181920212223242526272829303132
  1. <!DOCTYPE HTML>
  2. <html><head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
  4. <title>Testcase for bug </title>
  5. <link rel="stylesheet" type="text/css" href=" " />
  6. <!--
  7. #foo {
  8. /* This doesn't get evaluated */
  9. color: red;
  10. }
  11. #ie {
  12. border: 5px solid red;
  13. }
  14. #ie {
  15. display: block;
  16. }
  17. #moz {
  18. color: blue;
  19. /* display: none; */
  20. }
  21. -->
  22. </head>
  23. <body>
  24. <p id="foo">foo</p>
  25. <p id="ie">ie</p>
  26. <p id="moz">moz</p>
  27. </body>
  28. </html>