 Chromium Code Reviews
 Chromium Code Reviews Issue 1255483004:
  Implement surface-based browser process hit testing for Mac and Aura  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master
    
  
    Issue 1255483004:
  Implement surface-based browser process hit testing for Mac and Aura  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/src.git@master| Index: content/test/data/frame_tree/page_with_positioned_frame.html | 
| diff --git a/content/test/data/frame_tree/page_with_positioned_frame.html b/content/test/data/frame_tree/page_with_positioned_frame.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..a235881bbe656c88190c2b86f69deee748b8277f | 
| --- /dev/null | 
| +++ b/content/test/data/frame_tree/page_with_positioned_frame.html | 
| @@ -0,0 +1,16 @@ | 
| +<!DOCTYPE html> | 
| +<style> | 
| +iframe { | 
| + position:absolute; | 
| + top: 50px; | 
| + left: 50px; | 
| + width: 100px; | 
| + height: 100px; | 
| +} | 
| +</style> | 
| +<html> | 
| +<body> | 
| +<iframe src="/cross-site/baz.com/title1.html"></iframe> | 
| +This page contains a positioned cross-origin iframe. | 
| +</body> | 
| +</html> |