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

Unified Diff: chrome/test/data/webui/cr_elements/cr_dialog_test.js

Issue 2843333002: WebUI: restrict cr-dialogs max-height to the viewport. (Closed)
Patch Set: fix test Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/webui/cr_elements/cr_dialog_test.js
diff --git a/chrome/test/data/webui/cr_elements/cr_dialog_test.js b/chrome/test/data/webui/cr_elements/cr_dialog_test.js
index 41987dd2d391891460b85490afc7262a36be9d58..4c8086b2c03aa3ed3778f12d17fd389ddab32939 100644
--- a/chrome/test/data/webui/cr_elements/cr_dialog_test.js
+++ b/chrome/test/data/webui/cr_elements/cr_dialog_test.js
@@ -172,7 +172,9 @@ suite('cr-dialog', function() {
document.body.innerHTML = `
<dialog is="cr-dialog" show-scroll-borders>
<div class="title">title</div>
- <div class="body">body</div>
+ <div class="body">
+ <div style="height: 100px">tall content</div>
+ </div>
</dialog>`;
var dialog = document.body.querySelector('dialog');
@@ -213,7 +215,7 @@ suite('cr-dialog', function() {
observer.observe(bodyContainer, {attributes: true});
// Height is normally set via CSS, but mixin doesn't work with innerHTML.
- bodyContainer.style.height = '1px';
+ bodyContainer.style.height = '60px'; // Element has "min-height: 60px".
bodyContainer.scrollTop = 100;
});
});
« no previous file with comments | « no previous file | ui/webui/resources/cr_elements/cr_dialog/cr_dialog.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698