| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="resources/polyfill.js"></script> | |
| 5 </head> | 4 </head> |
| 6 | 5 |
| 7 <body> | 6 <body> |
| 8 | 7 |
| 9 <p>When :target is changed, we have to invalidate distribution.</p> | 8 <p>When :target is changed, we have to invalidate distribution.</p> |
| 10 | 9 |
| 11 <div id="host"> | 10 <div id="host"> |
| 12 <div id="target1">target 1</div> | 11 <div id="target1">target 1</div> |
| 13 <div id="target2">target 2</div> | 12 <div id="target2">target 2</div> |
| 14 <div id="target3">target 3</div> | 13 <div id="target3">target 3</div> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 25 | 24 |
| 26 setTimeout(function() { | 25 setTimeout(function() { |
| 27 location.hash = '#target2'; | 26 location.hash = '#target2'; |
| 28 testRunner.notifyDone(); | 27 testRunner.notifyDone(); |
| 29 }, 0); | 28 }, 0); |
| 30 | 29 |
| 31 </script> | 30 </script> |
| 32 </body> | 31 </body> |
| 33 </html> | 32 </html> |
| 34 | 33 |
| OLD | NEW |