Searched refs:optionalWidth (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DJSImageConstructor.cpp57 int* optionalWidth = 0; local
61 optionalWidth = &width;
69 HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight))));
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLImageElementConstructor.cpp73 int* optionalWidth = 0; local
77 optionalWidth = &width;
84 RefPtr<HTMLImageElement> image = HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight);
/external/webkit/Source/WebCore/html/
H A DHTMLImageElement.h40 static PassRefPtr<HTMLImageElement> createForJSConstructor(Document*, const int* optionalWidth, const int* optionalHeight);
H A DHTMLImageElement.cpp72 PassRefPtr<HTMLImageElement> HTMLImageElement::createForJSConstructor(Document* document, const int* optionalWidth, const int* optionalHeight) argument
75 if (optionalWidth)
76 image->setWidth(*optionalWidth);

Completed in 287 milliseconds