~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/webkit/WebCore/html/HTMLIFrameElement.h

  • Committer: Bazaar Package Importer
  • Author(s): Alessandro Ghersi
  • Date: 2009-11-02 18:30:08 UTC
  • mfrom: (1.2.2 upstream)
  • mto: (15.2.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 88.
  • Revision ID: james.westby@ubuntu.com-20091102183008-b6a4gcs128mvfb3m
Tags: upstream-4.6.0~beta1
ImportĀ upstreamĀ versionĀ 4.6.0~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3
3
 *           (C) 1999 Antti Koivisto (koivisto@kde.org)
4
4
 *           (C) 2000 Simon Hausmann <hausmann@kde.org>
5
 
 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved.
 
5
 * Copyright (C) 2004, 2006, 2008, 2009 Apple Inc. All rights reserved.
6
6
 *
7
7
 * This library is free software; you can redistribute it and/or
8
8
 * modify it under the terms of the GNU Library General Public
30
30
 
31
31
class HTMLIFrameElement : public HTMLFrameElementBase {
32
32
public:
33
 
    HTMLIFrameElement(const QualifiedName&, Document*, bool createdByParser);
 
33
    static PassRefPtr<HTMLIFrameElement> create(const QualifiedName&, Document*);
 
34
 
 
35
private:
 
36
    HTMLIFrameElement(const QualifiedName&, Document*);
34
37
 
35
38
    virtual HTMLTagStatus endTagRequirement() const { return TagStatusRequired; }
36
39
    virtual int tagPriority() const { return 1; }
48
51
    
49
52
    virtual bool isURLAttribute(Attribute*) const;
50
53
 
51
 
    String align() const;
52
 
    void setAlign(const String&);
53
 
 
54
 
    String height() const;
55
 
    void setHeight(const String&);
56
 
 
57
 
    String width() const;
58
 
    void setWidth(const String&);
59
 
 
60
 
private:
61
54
    AtomicString m_name;
62
55
};
63
56