| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 @MAC-DENY:AXTitle* | 3 @MAC-DENY:AXTitle* |
| 4 @MAC-DENY:AXValue* | 4 @MAC-DENY:AXValue* |
| 5 @MAC-ALLOW:position* | 5 @MAC-ALLOW:position* |
| 6 @MAC-ALLOW:size* | 6 @MAC-ALLOW:size* |
| 7 | 7 |
| 8 @WIN-DENY:title* | 8 @WIN-DENY:title* |
| 9 @WIN-ALLOW:location* | 9 @WIN-ALLOW:location* |
| 10 @WIN-ALLOW:size=(300, 150) | 10 @WIN-ALLOW:size=(300, 150) |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 var frame1 = document.getElementById('frame1'); | 69 var frame1 = document.getElementById('frame1'); |
| 70 writeFrameCode(frame1); | 70 writeFrameCode(frame1); |
| 71 | 71 |
| 72 var frame2 = document.getElementById('frame2'); | 72 var frame2 = document.getElementById('frame2'); |
| 73 writeFrameCode(frame2); | 73 writeFrameCode(frame2); |
| 74 frame2.contentWindow.scrollTo(150, 50); | 74 frame2.contentWindow.scrollTo(150, 50); |
| 75 </script> | 75 </script> |
| 76 | 76 |
| 77 </body> | 77 </body> |
| 78 </html> | 78 </html> |
| OLD | NEW |