Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: content/test/data/frame_tree/page_with_positioned_frame_pointer-events_none.html

Issue 1489913003: Handle pointer-events: none in browser process hittesting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: implement piman@'s suggestion Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <style> 2 <style>
3 iframe { 3 iframe {
4 position:absolute; 4 position:absolute;
5 top: 50px; 5 top: 50px;
6 left: 50px; 6 left: 50px;
7 width: 100px; 7 width: 100px;
8 height: 100px; 8 height: 100px;
9 pointer-events: none;
9 } 10 }
10 </style> 11 </style>
11 <html> 12 <html>
12 <body> 13 <body>
13 <iframe src="/cross-site/baz.com/title1.html"></iframe> 14 <iframe src="/cross-site/baz.com/title1.html"></iframe>
14 This page contains a positioned cross-origin iframe. 15 This page contains a positioned cross-origin iframe.
15 </body> 16 </body>
16 </html> 17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698