| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip
t> | 3 <script src="resources/repaint.js" type="text/javascript"></script> |
| 4 <script type="text/javascript"> | 4 <script type="text/javascript"> |
| 5 function repaintTest() | 5 function repaintTest() |
| 6 { | 6 { |
| 7 var container = document.getElementById('container'); | 7 var container = document.getElementById('container'); |
| 8 container.style.top = "250px"; | 8 container.style.top = "250px"; |
| 9 } | 9 } |
| 10 </script> | 10 </script> |
| 11 <style type="text/css" media="screen"> | 11 <style type="text/css" media="screen"> |
| 12 #container { | 12 #container { |
| 13 position: absolute; | 13 position: absolute; |
| (...skipping 27 matching lines...) Expand all Loading... |
| 41 <hr> | 41 <hr> |
| 42 | 42 |
| 43 <div id="underlay"> | 43 <div id="underlay"> |
| 44 </div> | 44 </div> |
| 45 <div id="container"> | 45 <div id="container"> |
| 46 <div class="outlined"> | 46 <div class="outlined"> |
| 47 </div> | 47 </div> |
| 48 </div> | 48 </div> |
| 49 </body> | 49 </body> |
| 50 </html> | 50 </html> |
| OLD | NEW |