Created
November 5, 2014 07:06
-
-
Save ragiragi/edb2517c8a985bcab162 to your computer and use it in GitHub Desktop.
sample code for composition calculation problem on blink
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ko"> | |
| <head> | |
| <title>assumedOverlap Fail</title> | |
| <meta name="viewport" | |
| content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width"/> | |
| <style> | |
| div { padding: 20px;} | |
| </style> | |
| </head> | |
| <body> | |
| <div style="-webkit-transform: translate3d(0px, 0px, 0px); background: yellow;"> | |
| LAYER (direct composited) | |
| </div> | |
| <div><!-- just space --></div> | |
| <div style="position:relative; background: yellowgreen;"> | |
| I'm not overlapped with any layer. But I'm also a layer | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment