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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/uievents/keyboard/key-manual.js

Issue 1985363002: Move the uievents directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 7 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 var _testing = false; 1 var _testing = false;
2 2
3 // The index into _keyTable of the key currently being tested. 3 // The index into _keyTable of the key currently being tested.
4 var _currKey = 0; 4 var _currKey = 0;
5 5
6 var _keysTotal = 0; 6 var _keysTotal = 0;
7 var _keysGood = 0; 7 var _keysGood = 0;
8 var _keysBad = 0; 8 var _keysBad = 0;
9 var _keysSkipped = 0; 9 var _keysSkipped = 0;
10 10
(...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after
662 key.classList.add("wide" + width); 662 key.classList.add("wide" + width);
663 } 663 }
664 key.textContent = keyCap; 664 key.textContent = keyCap;
665 665
666 row.appendChild(key); 666 row.appendChild(key);
667 } 667 }
668 668
669 keyboard.appendChild(row); 669 keyboard.appendChild(row);
670 body.appendChild(keyboard); 670 body.appendChild(keyboard);
671 } 671 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698