| 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>
|
|
|