X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fthird_party%2FWebKit%2FSource%2Fdevtools%2Ffront_end%2Fui%2FDropDownMenu.js;h=285dd2430c648a74c412d031b4aecec6f12374ca;hb=1afa4dd80ef85af7c90efaea6959db1d92330844;hp=129cb75ba85c8c0df02d21b080e184e613d57304;hpb=90762837333c13ccf56f2ad88e4481fc71e8d281;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/third_party/WebKit/Source/devtools/front_end/ui/DropDownMenu.js b/src/third_party/WebKit/Source/devtools/front_end/ui/DropDownMenu.js index 129cb75..285dd24 100644 --- a/src/third_party/WebKit/Source/devtools/front_end/ui/DropDownMenu.js +++ b/src/third_party/WebKit/Source/devtools/front_end/ui/DropDownMenu.js @@ -8,7 +8,7 @@ */ WebInspector.DropDownMenu = function() { - this.element = document.createElementWithClass("select", "drop-down-menu"); + this.element = createElementWithClass("select", "drop-down-menu"); this.element.addEventListener("mousedown", this._onBeforeMouseDown.bind(this), true); this.element.addEventListener("mousedown", consumeEvent, false); this.element.addEventListener("change", this._onChange.bind(this), false);