| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <!-- Page to help with testing of drag-and-drop scenarios. | 2 <!-- Page to help with testing of drag-and-drop scenarios. |
| 3 | 3 |
| 4 Left frame is at (100,100) to (299,299) coordinates. | 4 Left frame is at (100,100) to (299,299) coordinates. |
| 5 Right frame is at (300,100) to (499,299) coordinates. | 5 Right frame is at (300,100) to (499,299) coordinates. |
| 6 --> | 6 --> |
| 7 <head> | 7 <head> |
| 8 <meta charset="utf-8"> | 8 <meta charset="utf-8"> |
| 9 <style> | 9 <style> |
| 10 iframe { | 10 iframe { |
| 11 position: absolute; | 11 position: absolute; |
| 12 top: 100px; | 12 top: 100px; |
| 13 width: 200px; | 13 width: 200px; |
| 14 height: 200px; | 14 height: 200px; |
| 15 border: 0px; | 15 border: 0px; |
| 16 margin: 0px; | 16 margin: 0px; |
| 17 padding: 0px; | 17 padding: 0px; |
| 18 } | 18 } |
| 19 #left { left: 100px; background: green; } | 19 #left { left: 100px; background: green; } |
| 20 #right { left: 300px; background: cyan; } | 20 #right { left: 300px; background: cyan; } |
| 21 </style> | 21 </style> |
| 22 <script> |
| 23 window.name = "main"; |
| 24 </script> |
| 22 </head> | 25 </head> |
| 23 <body> | 26 <body> |
| 24 <iframe id="left" name="left" srcdoc="<body>blank left frame</body>"></iframe> | 27 <iframe id="left" name="left" srcdoc="<body>blank left frame</body>"></iframe> |
| 25 <iframe id="right" name="right" srcdoc="<body>blank right frame</body>"></ifra
me> | 28 <iframe id="right" name="right" srcdoc="<body>blank right frame</body>"></ifra
me> |
| 26 </body> | 29 </body> |
| OLD | NEW |