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

Side by Side Diff: LayoutTests/userstyles/simple-stylesheet.html

Issue 66383005: Remove the concept of user stylesheets. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix WebFrameCSSCallbackTest tests Created 7 years, 1 month 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 <!DOCTYPE HTML>
2 <html>
3 <head>
4 <script>
5 if (window.testRunner) {
6 testRunner.dumpAsText();
7 testRunner.addUserStyleSheet("div { width:0; }", true);
8 }
9 </script>
10 </head>
11 <body>
12 <div id="target">FAIL</div>
13 <script>
14 if (document.getElementById('target').offsetWidth == 0)
15 document.getElementById('target').innerHTML = 'PASS';
16 </script>
17 </body>
18 </html>
OLDNEW
« no previous file with comments | « LayoutTests/userstyles/resources/frame2.html ('k') | LayoutTests/userstyles/simple-stylesheet-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698