| <!-- | |
| @BLINK-ALLOW:pageLocation=(0, 0) | |
| @BLINK-ALLOW:pageLocation=(0, 50) | |
| @WAIT-FOR:(0, 50) | |
| --> | |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <style> | |
| div, p { | |
| margin: 0; | |
| padding: 0; | |
| border: 0; | |
| top: 0; | |
| left: 0; | |
| } | |
| div { | |
| position: fixed; | |
| } | |
| #outer { | |
| transform: TranslateY(2px); | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div id="outer"> | |
| <p>content</p> | |
| </div> | |
| <script> | |
| setTimeout(function() { | |
| document.getElementById("outer").style.transform = "translateY(50px)"; | |
| }, 10); | |
| </script> | |
| </body> | |
| </html> |