Home
last modified time | relevance | path

Searched refs:htmlInfo (Results 1 – 1 of 1) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/
DHelper.java162 final HtmlInfo htmlInfo = assertHasHtmlTag(node, "form");
163 final String formName = getAttributeValue(htmlInfo, "name");
245 final HtmlInfo htmlInfo = node.getHtmlInfo(); in dump() local
246 if (htmlInfo != null) { in dump()
247 builder.append(", HtmlInfo[tag=").append(htmlInfo.getTag()) in dump()
248 .append(", attrs: ").append(htmlInfo.getAttributes()).append(']'); in dump()
420 final HtmlInfo htmlInfo = node.getHtmlInfo(); in getHtmlName() local
421 if (htmlInfo == null) { in getHtmlName()
424 final String tag = htmlInfo.getTag(); in getHtmlName()
426 Log.w(TAG, "getHtmlName(): invalid tag (" + tag + ") on " + htmlInfo); in getHtmlName()
[all …]