HomeSort by relevance Sort by last modified time
    Searched refs:optionalHeight (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/bindings/js/
JSImageConstructor.cpp 58 int* optionalHeight = 0;
65 optionalHeight = &height;
69 HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight))));
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLImageElementConstructor.cpp 74 int* optionalHeight = 0;
81 optionalHeight = &height;
84 RefPtr<HTMLImageElement> image = HTMLImageElement::createForJSConstructor(document, optionalWidth, optionalHeight);
  /external/webkit/Source/WebCore/html/
HTMLImageElement.h 40 static PassRefPtr<HTMLImageElement> createForJSConstructor(Document*, const int* optionalWidth, const int* optionalHeight);
HTMLImageElement.cpp 72 PassRefPtr<HTMLImageElement> HTMLImageElement::createForJSConstructor(Document* document, const int* optionalWidth, const int* optionalHeight)
77 if (optionalHeight > 0)
78 image->setHeight(*optionalHeight);

Completed in 571 milliseconds