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

Unified Diff: third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-crash-on-style-update.html

Issue 1591613002: Move tests about 'New SELECT Popup' to fast/forms/select-popup, and disable them on OSX and Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-crash-on-style-update.html
diff --git a/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-crash-on-style-update.html b/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-crash-on-style-update.html
deleted file mode 100644
index f4819ff4855ba6819b5de359feffd1d00c0ffbe0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/fast/forms/select/popup-menu-crash-on-style-update.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!DOCTYPE html>
-<body>
-<script src="../../../resources/testharness.js"></script>
-<script src="../../../resources/testharnessreport.js"></script>
-<script src="../resources/picker-common.js"></script>
-<select><option>option</option></select>
-<script>
-var test = async_test('Do not crash in PopupMenuImpl::update');
-var select = document.querySelector('select');
-openPicker(select, function() {
- setTimeout(function() {
- select.setAttribute('style', 'font-size: larger;');
- select.offsetWidth;
- select.style.display = 'none';
- setTimeout(function() {
- test.step(function() { assert_true(true, 'Did not crash.'); });
- test.done();
- }, 0);
- }, 0);
-}, function() {
- // Do nothing on Mac and Android.
- test.done();
-});
-</script>
-</body>

Powered by Google App Engine
This is Rietveld 408576698