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

hazendaz / httpunit / 656

06 Dec 2025 09:11PM UTC coverage: 80.452% (+0.02%) from 80.435%
656

push

github

hazendaz
[maven-release-plugin] prepare for next development iteration

3213 of 4105 branches covered (78.27%)

Branch coverage included in aggregate %.

8245 of 10137 relevant lines covered (81.34%)

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
 * MIT License
3
 *
4
 * Copyright 2011-2025 Russell Gold
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
7
 * documentation files (the "Software"), to deal in the Software without restriction, including without limitation
8
 * the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
9
 * to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
 *
11
 * The above copyright notice and this permission notice shall be included in all copies or substantial portions
12
 * of the Software.
13
 *
14
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
15
 * THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
17
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18
 * DEALINGS IN THE SOFTWARE.
19
 */
20
package com.meterware.httpunit.dom;
21

22
import org.w3c.dom.Document;
23
import org.w3c.dom.html.HTMLIFrameElement;
24

25
/**
26
 * The Class HTMLIFrameElementImpl.
27
 */
28
public class HTMLIFrameElementImpl extends HTMLElementImpl implements HTMLIFrameElement {
1✔
29

30
    /** The Constant serialVersionUID. */
31
    private static final long serialVersionUID = 1L;
32

33
    @Override
34
    ElementImpl create() {
35
        return new HTMLIFrameElementImpl();
1✔
36
    }
37

38
    /**
39
     * Gets the align.
40
     *
41
     * @return the align
42
     */
43
    @Override
44
    public String getAlign() {
45
        return getAttributeWithNoDefault("align");
1✔
46
    }
47

48
    /**
49
     * Sets the align.
50
     *
51
     * @param align
52
     *            the new align
53
     */
54
    @Override
55
    public void setAlign(String align) {
56
        setAttribute("align", align);
1✔
57
    }
1✔
58

59
    /**
60
     * Gets the frame border.
61
     *
62
     * @return the frame border
63
     */
64
    @Override
65
    public String getFrameBorder() {
66
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
67
    }
68

69
    /**
70
     * Sets the frame border.
71
     *
72
     * @param frameBorder
73
     *            the new frame border
74
     */
75
    @Override
76
    public void setFrameBorder(String frameBorder) {
77
        // To change body of implemented methods use File | Settings | File Templates.
78
    }
×
79

80
    /**
81
     * Gets the height.
82
     *
83
     * @return the height
84
     */
85
    @Override
86
    public String getHeight() {
87
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
88
    }
89

90
    /**
91
     * Sets the height.
92
     *
93
     * @param height
94
     *            the new height
95
     */
96
    @Override
97
    public void setHeight(String height) {
98
        // To change body of implemented methods use File | Settings | File Templates.
99
    }
×
100

101
    /**
102
     * Gets the long desc.
103
     *
104
     * @return the long desc
105
     */
106
    @Override
107
    public String getLongDesc() {
108
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
109
    }
110

111
    /**
112
     * Sets the long desc.
113
     *
114
     * @param longDesc
115
     *            the new long desc
116
     */
117
    @Override
118
    public void setLongDesc(String longDesc) {
119
        // To change body of implemented methods use File | Settings | File Templates.
120
    }
×
121

122
    /**
123
     * Gets the margin height.
124
     *
125
     * @return the margin height
126
     */
127
    @Override
128
    public String getMarginHeight() {
129
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
130
    }
131

132
    /**
133
     * Sets the margin height.
134
     *
135
     * @param marginHeight
136
     *            the new margin height
137
     */
138
    @Override
139
    public void setMarginHeight(String marginHeight) {
140
        // To change body of implemented methods use File | Settings | File Templates.
141
    }
×
142

143
    /**
144
     * Gets the margin width.
145
     *
146
     * @return the margin width
147
     */
148
    @Override
149
    public String getMarginWidth() {
150
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
151
    }
152

153
    /**
154
     * Sets the margin width.
155
     *
156
     * @param marginWidth
157
     *            the new margin width
158
     */
159
    @Override
160
    public void setMarginWidth(String marginWidth) {
161
        // To change body of implemented methods use File | Settings | File Templates.
162
    }
×
163

164
    /**
165
     * Gets the name.
166
     *
167
     * @return the name
168
     */
169
    @Override
170
    public String getName() {
171
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
172
    }
173

174
    /**
175
     * Sets the name.
176
     *
177
     * @param name
178
     *            the new name
179
     */
180
    @Override
181
    public void setName(String name) {
182
        // To change body of implemented methods use File | Settings | File Templates.
183
    }
×
184

185
    /**
186
     * Gets the scrolling.
187
     *
188
     * @return the scrolling
189
     */
190
    @Override
191
    public String getScrolling() {
192
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
193
    }
194

195
    /**
196
     * Sets the scrolling.
197
     *
198
     * @param scrolling
199
     *            the new scrolling
200
     */
201
    @Override
202
    public void setScrolling(String scrolling) {
203
        // To change body of implemented methods use File | Settings | File Templates.
204
    }
×
205

206
    /**
207
     * Gets the src.
208
     *
209
     * @return the src
210
     */
211
    @Override
212
    public String getSrc() {
213
        return getAttributeWithNoDefault("src");
1✔
214
    }
215

216
    /**
217
     * Sets the src.
218
     *
219
     * @param src
220
     *            the new src
221
     */
222
    @Override
223
    public void setSrc(String src) {
224
        setAttribute("src", src);
1✔
225
    }
1✔
226

227
    /**
228
     * Gets the width.
229
     *
230
     * @return the width
231
     */
232
    @Override
233
    public String getWidth() {
234
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
235
    }
236

237
    /**
238
     * Sets the width.
239
     *
240
     * @param width
241
     *            the new width
242
     */
243
    @Override
244
    public void setWidth(String width) {
245
        // To change body of implemented methods use File | Settings | File Templates.
246
    }
×
247

248
    /**
249
     * Gets the content document.
250
     *
251
     * @return the content document
252
     */
253
    @Override
254
    public Document getContentDocument() {
255
        return null; // To change body of implemented methods use File | Settings | File Templates.
×
256
    }
257

258
}
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