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

Side by Side Diff: LayoutTests/inspector/elements/resources/highlight-node-transformed-iframe.html

Issue 1158883003: DevTools: shard inspector/elements tests for faster execution. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <html>
2 <head>
3 <style>
4 div {
5 position: absolute;
6 left: 50px;
7 top: 60px;
8 width: 40px;
9 height: 50px;
10 background-color: red;
11 transform: scale(2) rotate(90deg);
12 }
13 </style>
14 </head>
15
16 <body>
17 <div id="div"></div>
18 <script>
19 top.iframeDivElement = document.getElementById("div");
20 </script>
21 </body>
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698