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

Side by Side Diff: third_party/WebKit/LayoutTests/scrollbars/custom-scrollbar-not-inherited-by-iframe.html

Issue 2235693002: convert LayoutTest/scrollbars/* js-test.js tests to testharness.js based tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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 <script src="../resources/js-test.js"></script> 2 <script src="../resources/testharness.js"></script>
3 <script src="../resources/testharnessreport.js"></script>
3 <style> 4 <style>
4 ::-webkit-scrollbar { 5 ::-webkit-scrollbar {
5 width: 150px; 6 width: 150px;
6 height: 150px; 7 height: 150px;
7 } 8 }
8 iframe { 9 iframe {
9 width: 300px; 10 width: 300px;
10 border: 0; 11 border: 0;
11 outline: 1px solid blue; 12 outline: 1px solid blue;
12 } 13 }
13 </style> 14 </style>
14 <iframe srcdoc=" 15 <iframe srcdoc="
15 <style> 16 <style>
16 body { margin: 0; padding: 10px; height: 500px; font: 10pt monospace; } 17 body { margin: 0; padding: 10px; height: 500px; font: 10pt monospace; }
17 </style> 18 </style>
18 "></iframe> 19 "></iframe>
19 <script> 20 <script>
20 onload = function() { 21 test(function() {
22 onload = function() {
Srirama 2016/08/10 11:04:39 This isn't right as this is a sync test, this won'
MuVen 2016/08/10 11:40:59 Done.
21 var body = document.querySelector("iframe").contentDocument.body; 23 var body = document.querySelector("iframe").contentDocument.body;
22 shouldBe("285", String(body.clientWidth)); 24 assert_equals(285, body.clientWidth);
23 }; 25 };
24 </script> 26 });
27 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698