View | Details | Raw Unified | Return to bug 253166
Collapse All | Expand All

(-)libraries/baseBrowserLibrary.js (+18 lines)
Lines 2575-2580 Link Here
2575
HTMLOptGroupElement.prototype.label="";
2575
HTMLOptGroupElement.prototype.label="";
2576
2576
2577
/**
2577
/**
2578
 * Object Option()
2579
 * @constructor
2580
 * @param {String} text
2581
 * @param {String} value
2582
 * @param {Boolean} defaultSelected
2583
 * @param {Boolean} selected
2584
 */
2585
function Option(text, value, defaultSelected, selected){};
2586
Option.prototype = new HTMLOptionElement();
2587
/**
2578
 * Object HTMLOptionElement()
2588
 * Object HTMLOptionElement()
2579
 * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html
2589
 * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html
2580
 * 
2590
 * 
Lines 3778-3783 Link Here
3778
HTMLAnchorElement.prototype.focus = function(){};
3788
HTMLAnchorElement.prototype.focus = function(){};
3779
3789
3780
/**
3790
/**
3791
 * Object Image()
3792
 * @constructor
3793
 * @param {Number} width
3794
 * @param {Number} height
3795
 */
3796
function Image(width, height){};
3797
Image.prototype = new HTMLImageElement();
3798
/**
3781
 * Object HTMLImageElement()
3799
 * Object HTMLImageElement()
3782
 * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html
3800
 * http://www.w3.org/TR/2003/REC-DOM-Level-2-HTML-20030109/html.html
3783
 * 
3801
 * 

Return to bug 253166