Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
michael@0 | 1 | <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
michael@0 | 2 | <html class="reftest-wait"> |
michael@0 | 3 | |
michael@0 | 4 | <head> |
michael@0 | 5 | <title></title> |
michael@0 | 6 | |
michael@0 | 7 | <style> |
michael@0 | 8 | |
michael@0 | 9 | body { |
michael@0 | 10 | margin: 20px; |
michael@0 | 11 | } |
michael@0 | 12 | |
michael@0 | 13 | tr { |
michael@0 | 14 | background: gray; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | .t2 tr { |
michael@0 | 18 | outline: 1px solid gray; |
michael@0 | 19 | -moz-outline-radius: .3em; |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | .t1 tr { |
michael@0 | 23 | outline: 1px solid red; |
michael@0 | 24 | -moz-outline-radius: .3em; |
michael@0 | 25 | } |
michael@0 | 26 | |
michael@0 | 27 | </style> |
michael@0 | 28 | |
michael@0 | 29 | <script type="text/javascript"> |
michael@0 | 30 | |
michael@0 | 31 | function showBug() { |
michael@0 | 32 | document.getElementById("table1").setAttribute("class", "t1"); |
michael@0 | 33 | } |
michael@0 | 34 | |
michael@0 | 35 | window.addEventListener("MozReftestInvalidate", |
michael@0 | 36 | function() { |
michael@0 | 37 | showBug(); |
michael@0 | 38 | document.documentElement.className = ""; |
michael@0 | 39 | }, false); |
michael@0 | 40 | |
michael@0 | 41 | </script> |
michael@0 | 42 | |
michael@0 | 43 | </head> |
michael@0 | 44 | |
michael@0 | 45 | <body> |
michael@0 | 46 | |
michael@0 | 47 | <table id="table1"> |
michael@0 | 48 | <tr><td>AAAA</td></tr> |
michael@0 | 49 | <tr><td>AAAA</td></tr> |
michael@0 | 50 | |
michael@0 | 51 | <tr><td>AAAA</td></tr> |
michael@0 | 52 | <tr><td>AAAA</td></tr> |
michael@0 | 53 | </table> |
michael@0 | 54 | |
michael@0 | 55 | <table class="t2"> |
michael@0 | 56 | <tr><td>AAAA</td></tr> |
michael@0 | 57 | <tr><td>AAAA</td></tr> |
michael@0 | 58 | <tr><td>AAAA</td></tr> |
michael@0 | 59 | |
michael@0 | 60 | <tr><td>AAAA</td></tr> |
michael@0 | 61 | </table> |
michael@0 | 62 | |
michael@0 | 63 | <br/> |
michael@0 | 64 | <form method="get" action="#"> |
michael@0 | 65 | <input type="button" onclick="showBug(); return false;" value="Trigger bug"/> |
michael@0 | 66 | </form> |
michael@0 | 67 | |
michael@0 | 68 | </body> </html> |