• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

hazendaz / httpunit / 755

14 Feb 2026 07:14PM UTC coverage: 80.526%. Remained the same
755

push

github

hazendaz
[ci] Fix badge

3213 of 4105 branches covered (78.27%)

Branch coverage included in aggregate %.

8245 of 10124 relevant lines covered (81.44%)

0.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

32.0
/src/main/java/com/meterware/httpunit/dom/HTMLIFrameElementImpl.java
1
/*
2
 * SPDX-License-Identifier: MIT
3
 * See LICENSE file for details.
4
 *
5
 * Copyright 2000-2026 Russell Gold
6
 * Copyright 2021-2000 hazendaz
7
 */
8
package com.meterware.httpunit.dom;
9

10
import org.w3c.dom.Document;
11
import org.w3c.dom.html.HTMLIFrameElement;
12

13
/**
14
 * The Class HTMLIFrameElementImpl.
15
 */
16
public class HTMLIFrameElementImpl extends HTMLElementImpl implements HTMLIFrameElement {
1✔
17

18
    /** The Constant serialVersionUID. */
19
    private static final long serialVersionUID = 1L;
20

21
    @Override
22
    ElementImpl create() {
23
        return new HTMLIFrameElementImpl();
1✔
24
    }
25

26
    /**
27
     * Gets the align.
28
     *
29
     * @return the align
30
     */
31
    @Override
32
    public String getAlign() {
33
        return getAttributeWithNoDefault("align");
1✔
34
    }
35

36
    /**
37
     * Sets the align.
38
     *
39
     * @param align
40
     *            the new align
41
     */
42
    @Override
43
    public void setAlign(String align) {
44
        setAttribute("align", align);
1✔
45
    }
1✔
46

47
    /**
48
     * Gets the frame border.
49
     *
50
     * @return the frame border
51
     */
52
    @Override
53
    public String getFrameBorder() {
54
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
55
    }
56

57
    /**
58
     * Sets the frame border.
59
     *
60
     * @param frameBorder
61
     *            the new frame border
62
     */
63
    @Override
64
    public void setFrameBorder(String frameBorder) {
65
        // To change body of implemented methods use File | Settings | File Templates.
66
    }
×
67

68
    /**
69
     * Gets the height.
70
     *
71
     * @return the height
72
     */
73
    @Override
74
    public String getHeight() {
75
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
76
    }
77

78
    /**
79
     * Sets the height.
80
     *
81
     * @param height
82
     *            the new height
83
     */
84
    @Override
85
    public void setHeight(String height) {
86
        // To change body of implemented methods use File | Settings | File Templates.
87
    }
×
88

89
    /**
90
     * Gets the long desc.
91
     *
92
     * @return the long desc
93
     */
94
    @Override
95
    public String getLongDesc() {
96
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
97
    }
98

99
    /**
100
     * Sets the long desc.
101
     *
102
     * @param longDesc
103
     *            the new long desc
104
     */
105
    @Override
106
    public void setLongDesc(String longDesc) {
107
        // To change body of implemented methods use File | Settings | File Templates.
108
    }
×
109

110
    /**
111
     * Gets the margin height.
112
     *
113
     * @return the margin height
114
     */
115
    @Override
116
    public String getMarginHeight() {
117
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
118
    }
119

120
    /**
121
     * Sets the margin height.
122
     *
123
     * @param marginHeight
124
     *            the new margin height
125
     */
126
    @Override
127
    public void setMarginHeight(String marginHeight) {
128
        // To change body of implemented methods use File | Settings | File Templates.
129
    }
×
130

131
    /**
132
     * Gets the margin width.
133
     *
134
     * @return the margin width
135
     */
136
    @Override
137
    public String getMarginWidth() {
138
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
139
    }
140

141
    /**
142
     * Sets the margin width.
143
     *
144
     * @param marginWidth
145
     *            the new margin width
146
     */
147
    @Override
148
    public void setMarginWidth(String marginWidth) {
149
        // To change body of implemented methods use File | Settings | File Templates.
150
    }
×
151

152
    /**
153
     * Gets the name.
154
     *
155
     * @return the name
156
     */
157
    @Override
158
    public String getName() {
159
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
160
    }
161

162
    /**
163
     * Sets the name.
164
     *
165
     * @param name
166
     *            the new name
167
     */
168
    @Override
169
    public void setName(String name) {
170
        // To change body of implemented methods use File | Settings | File Templates.
171
    }
×
172

173
    /**
174
     * Gets the scrolling.
175
     *
176
     * @return the scrolling
177
     */
178
    @Override
179
    public String getScrolling() {
180
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
181
    }
182

183
    /**
184
     * Sets the scrolling.
185
     *
186
     * @param scrolling
187
     *            the new scrolling
188
     */
189
    @Override
190
    public void setScrolling(String scrolling) {
191
        // To change body of implemented methods use File | Settings | File Templates.
192
    }
×
193

194
    /**
195
     * Gets the src.
196
     *
197
     * @return the src
198
     */
199
    @Override
200
    public String getSrc() {
201
        return getAttributeWithNoDefault("src");
1✔
202
    }
203

204
    /**
205
     * Sets the src.
206
     *
207
     * @param src
208
     *            the new src
209
     */
210
    @Override
211
    public void setSrc(String src) {
212
        setAttribute("src", src);
1✔
213
    }
1✔
214

215
    /**
216
     * Gets the width.
217
     *
218
     * @return the width
219
     */
220
    @Override
221
    public String getWidth() {
222
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
223
    }
224

225
    /**
226
     * Sets the width.
227
     *
228
     * @param width
229
     *            the new width
230
     */
231
    @Override
232
    public void setWidth(String width) {
233
        // To change body of implemented methods use File | Settings | File Templates.
234
    }
×
235

236
    /**
237
     * Gets the content document.
238
     *
239
     * @return the content document
240
     */
241
    @Override
242
    public Document getContentDocument() {
243
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
244
    }
245

246
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc