| Index: third_party/WebKit/PerformanceTests/Editing/delete-in-password-field.html
|
| diff --git a/third_party/WebKit/PerformanceTests/Editing/delete-in-password-field.html b/third_party/WebKit/PerformanceTests/Editing/delete-in-password-field.html
|
| deleted file mode 100644
|
| index c5c5a9d63697ed8b60d1d89c5a8d9f1b932cabce..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/PerformanceTests/Editing/delete-in-password-field.html
|
| +++ /dev/null
|
| @@ -1,22 +0,0 @@
|
| -<!doctype html>
|
| -<script src="../resources/runner.js"></script>
|
| -<div id="hidden" style="height:0px; overflow:hidden;"></div>
|
| -<input type="password">
|
| -<script>
|
| -const kCount = 100;
|
| -const hidden = document.getElementById('hidden');
|
| -const password = document.querySelector('input[type=password]');
|
| -hidden.innerHTML= '<p>foo bar</p>'.repeat(999);
|
| -
|
| -PerfTestRunner.measureTime({
|
| - description: 'Measures performance of delete in password field with many hidden elements',
|
| - setup: () => {
|
| - password.value = 'x'.repeat(kCount);
|
| - password.focus();
|
| - },
|
| - run: () => {
|
| - for (let counter = 0; counter < kCount; ++counter)
|
| - document.execCommand('delete');
|
| - },
|
| -});
|
| -</script>
|
|
|