Changeset 175477 in webkit
- Timestamp:
- Nov 3, 2014, 11:19:55 AM (12 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/mediacontrols/mediaControlsBase.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r175475 r175477 1 2014-11-03 Alexey Proskuryakov <ap@apple.com> 2 3 REGRESSION: Using a media element changes window.name 4 https://bugs.webkit.org/show_bug.cgi?id=138278 5 rdar://problem/18704134 6 7 Apply the same fix to mediaControlsBase.js. I do not know who uses this file, but 8 there is no reason to have the bug there. 9 10 * Modules/mediacontrols/mediaControlsBase.js: 11 (Controller.prototype.addVideoListeners): 12 (Controller.prototype.removeVideoListeners): 13 (Controller.prototype.disconnectControls): 14 1 15 2014-11-03 Andreas Kling <akling@apple.com> 2 16 -
trunk/Source/WebCore/Modules/mediacontrols/mediaControlsBase.js
r173401 r175477 156 156 addVideoListeners: function() 157 157 { 158 for ( name in this.HandledVideoEvents) {158 for (var name in this.HandledVideoEvents) { 159 159 this.listenFor(this.video, name, this.HandledVideoEvents[name]); 160 160 }; … … 182 182 removeVideoListeners: function() 183 183 { 184 for ( name in this.HandledVideoEvents) {184 for (var name in this.HandledVideoEvents) { 185 185 this.stopListeningFor(this.video, name, this.HandledVideoEvents[name]); 186 186 }; … … 438 438 disconnectControls: function(event) 439 439 { 440 for ( item in this.controls) {440 for (var item in this.controls) { 441 441 var control = this.controls[item]; 442 442 if (control && control.parentNode)
Note:
See TracChangeset
for help on using the changeset viewer.