Changeset 155000 in webkit
- Timestamp:
- Sep 3, 2013, 2:47:45 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r154976 r155000 1 2013-09-03 Alexey Proskuryakov <ap@apple.com> 2 3 [Mac] WebKitTestRunner still beeps sometimes 4 https://bugs.webkit.org/show_bug.cgi?id=120652 5 6 Reviewed by Tim Horton. 7 8 In bug 107251, we disabled beeping in WebProcess, but some of the beeps happen in 9 UI process (notably, AppKit beeps when handling a key equivalent returns NO). 10 11 * WebKitTestRunner/mac/TestControllerMac.mm: (WTR::TestController::platformInitialize): 12 Use the same SPI that we use in DRT and in WebProcess to disable beeping. 13 1 14 2013-09-03 Krzysztof Czech <k.czech@samsung.com> 2 15 -
trunk/Tools/WebKitTestRunner/mac/TestControllerMac.mm
r154949 r155000 33 33 #import <mach-o/dyld.h> 34 34 35 @interface NSSound (Details) 36 + (void)_setAlertType:(NSUInteger)alertType; 37 @end 38 35 39 namespace WTR { 36 40 … … 43 47 poseAsClass("WebKitTestRunnerPasteboard", "NSPasteboard"); 44 48 poseAsClass("WebKitTestRunnerEvent", "NSEvent"); 49 50 [NSSound _setAlertType:0]; 45 51 } 46 52
Note:
See TracChangeset
for help on using the changeset viewer.