1 38 package com.gargoylesoftware.htmlunit.html; 39 40 import java.util.Map ; 41 42 51 public class HtmlInlineFrame extends BaseFrame { 52 53 54 public static final String TAG_NAME = "iframe"; 55 56 57 63 public HtmlInlineFrame( final HtmlPage page, final Map attributes) { 64 super(page, attributes); 65 } 66 67 70 public String getTagName() { 71 return TAG_NAME; 72 } 73 } 74 | Popular Tags |