summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLVideoElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLVideoElement.cpp')
-rw-r--r--WebCore/html/HTMLVideoElement.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/WebCore/html/HTMLVideoElement.cpp b/WebCore/html/HTMLVideoElement.cpp
index 9fd1a09..cf7d64c 100644
--- a/WebCore/html/HTMLVideoElement.cpp
+++ b/WebCore/html/HTMLVideoElement.cpp
@@ -154,11 +154,6 @@ unsigned HTMLVideoElement::width() const
unsigned w = getAttribute(widthAttr).string().toUInt(&ok);
return ok ? w : 0;
}
-
-void HTMLVideoElement::setWidth(unsigned value)
-{
- setAttribute(widthAttr, String::number(value));
-}
unsigned HTMLVideoElement::height() const
{
@@ -167,16 +162,6 @@ unsigned HTMLVideoElement::height() const
return ok ? h : 0;
}
-void HTMLVideoElement::setHeight(unsigned value)
-{
- setAttribute(heightAttr, String::number(value));
-}
-
-void HTMLVideoElement::setPoster(const String& value)
-{
- setAttribute(posterAttr, value);
-}
-
bool HTMLVideoElement::isURLAttribute(Attribute* attribute) const
{
return HTMLMediaElement::isURLAttribute(attribute)