Home
last modified time | relevance | path

Searched refs:optionalHeight (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
DJSImageConstructor.cpp58 int* optionalHeight = 0; in constructImage() local
65 optionalHeight = &height; in constructImage()
69 HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight)))); in constructImage()
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8HTMLImageElementConstructor.cpp74 int* optionalHeight = 0; in v8HTMLImageElementConstructorCallback() local
81 optionalHeight = &height; in v8HTMLImageElementConstructorCallback()
84 …Element> image = HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight); in v8HTMLImageElementConstructorCallback()
/external/webkit/Source/WebCore/html/
DHTMLImageElement.cpp72 …nt::createForJSConstructor(Document* document, const int* optionalWidth, const int* optionalHeight) in createForJSConstructor() argument
77 if (optionalHeight > 0) in createForJSConstructor()
78 image->setHeight(*optionalHeight); in createForJSConstructor()
DHTMLImageElement.h40 …ageElement> createForJSConstructor(Document*, const int* optionalWidth, const int* optionalHeight);