관리 메뉴

Life goes slowly...

[Javascript] 자바스크립트(JS)의 부모노드 접근 - parentNode 본문

프로그래밍/Javascript

[Javascript] 자바스크립트(JS)의 부모노드 접근 - parentNode

빨강소 2021. 3. 25. 08:31
728x90
반응형

 

 

자바스크립트(Javascript)의 부모노드 접근방법

parentNode은 자바스크립트(Javascript)에서 부모 element나 노드에 접근하는 방법으로, 현재 element의 부모 노드가 포함된 노드 List를 반환합니다. 이때 반환되는 노드 List에는 element의 노드 뿐만 아니라 주석 노드와 같은 비요소 노드를 포함합니다.

 

//parentNode 사용방법

element.parentNode

 

<ul>
    <li>1. 철수</li>
    <li id="test">2. 동건</li>
    <li>3. 토마스</li>
    <li>4. 원빈</li>
    <li>5. 인성</li>
</ul>


console.log(document.getElementById("test").parentNode)

 

[object HTMLUListElement] {
  accessKey: "",
  addEventListener: function addEventListener() { [native code] },
  after: function after() { [native code] },
  animate: function animate() { [native code] },
  append: function append() { [native code] },
  appendChild: function appendChild() { [native code] },
  ariaAtomic: null,
  ariaAutoComplete: null,
  ariaBusy: null,
  ariaChecked: null,
  ariaColCount: null,
  ariaColIndex: null,
  ariaColSpan: null,
  ariaCurrent: null,
  ariaDescription: null,
  ariaDisabled: null,
  ariaExpanded: null,
  ariaHasPopup: null,
  ariaHidden: null,
  ariaKeyShortcuts: null,
  ariaLabel: null,
  ariaLevel: null,
  ariaLive: null,
  ariaModal: null,
  ariaMultiLine: null,
  ariaMultiSelectable: null,
  ariaOrientation: null,
  ariaPlaceholder: null,
  ariaPosInSet: null,
  ariaPressed: null,
  ariaReadOnly: null,
  ariaRelevant: null,
  ariaRequired: null,
  ariaRoleDescription: null,
  ariaRowCount: null,
  ariaRowIndex: null,
  ariaRowSpan: null,
  ariaSelected: null,
  ariaSetSize: null,
  ariaSort: null,
  ariaValueMax: null,
  ariaValueMin: null,
  ariaValueNow: null,
  ariaValueText: null,
  assignedSlot: null,
  attachInternals: function attachInternals() { [native code] },
  attachShadow: function attachShadow() { [native code] },
  ATTRIBUTE_NODE: 2,
  attributes: [object NamedNodeMap] {
    getNamedItem: function getNamedItem() { [native code] },
    getNamedItemNS: function getNamedItemNS() { [native code] },
    item: function item() { [native code] },
    length: 0,
    removeNamedItem: function removeNamedItem() { [native code] },
    removeNamedItemNS: function removeNamedItemNS() { [native code] },
    setNamedItem: function setNamedItem() { [native code] },
    setNamedItemNS: function setNamedItemNS() { [native code] }
  },
  attributeStyleMap: [object StylePropertyMap] {
    append: function append() { [native code] },
    clear: function clear() { [native code] },
    delete: function delete() { [native code] },
    entries: function entries() { [native code] },
    forEach: function forEach() { [native code] },
    get: function get() { [native code] },
    getAll: function getAll() { [native code] },
    has: function has() { [native code] },
    keys: function keys() { [native code] },
    set: function set() { [native code] },
    size: 0,
    values: function values() { [native code] }
  },
  autocapitalize: "",
  autofocus: false,
  baseURI: "https://null.jsbin.com/runner",
  before: function before() { [native code] },
  blur: function blur() { [native code] },
  CDATA_SECTION_NODE: 4,
  childElementCount: 5,
  childNodes: [object NodeList] {
    0: [object Text] { ... },
    1: [object HTMLLIElement] { ... },
    10: [object Text] { ... },
    2: [object Text] { ... },
    3: [object HTMLLIElement] { ... },
    4: [object Text] { ... },
    5: [object HTMLLIElement] { ... },
    6: [object Text] { ... },
    7: [object HTMLLIElement] { ... },
    8: [object Text] { ... },
    9: [object HTMLLIElement] { ... },
    entries: function entries() { [native code] },
    forEach: function forEach() { [native code] },
    item: function item() { [native code] },
    keys: function keys() { [native code] },
    length: 11,
    values: function values() { [native code] }
  },
  children: [object HTMLCollection] {
    0: [circular object HTMLLIElement] :
<li>1. 철수</li>,
    1: [circular object HTMLLIElement] :
<li id="test">2. 동건</li>,
    2: [circular object HTMLLIElement] :
<li>3. 토마스</li>,
    3: [circular object HTMLLIElement] :
<li>4. 원빈</li>,
    4: [circular object HTMLLIElement] :
<li>5. 인성</li>,
    item: function item() { [native code] },
    length: 5,
    namedItem: function namedItem() { [native code] }
  },
  classList: [object DOMTokenList] {
    add: function add() { [native code] },
    contains: function contains() { [native code] },
    entries: function entries() { [native code] },
    forEach: function forEach() { [native code] },
    item: function item() { [native code] },
    keys: function keys() { [native code] },
    length: 0,
    remove: function remove() { [native code] },
    replace: function replace() { [native code] },
    supports: function supports() { [native code] },
    toggle: function toggle() { [native code] },
    toString: function toString() { [native code] },
    value: "",
    values: function values() { [native code] }
  },
  className: "",
  click: function click() { [native code] },
  clientHeight: 105,
  clientLeft: 0,
  clientTop: 0,
  clientWidth: 182,
  cloneNode: function cloneNode() { [native code] },
  closest: function closest() { [native code] },
  COMMENT_NODE: 8,
  compact: false,
  compareDocumentPosition: function compareDocumentPosition() { [native code] },
  computedStyleMap: function computedStyleMap() { [native code] },
  contains: function contains() { [native code] },
  contentEditable: "inherit",
  dataset: [object DOMStringMap] { ... },
  dir: "",
  dispatchEvent: function dispatchEvent() { [native code] },
  DOCUMENT_FRAGMENT_NODE: 11,
  DOCUMENT_NODE: 9,
  DOCUMENT_POSITION_CONTAINED_BY: 16,
  DOCUMENT_POSITION_CONTAINS: 8,
  DOCUMENT_POSITION_DISCONNECTED: 1,
  DOCUMENT_POSITION_FOLLOWING: 4,
  DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32,
  DOCUMENT_POSITION_PRECEDING: 2,
  DOCUMENT_TYPE_NODE: 10,
  draggable: false,
  ELEMENT_NODE: 1,
  elementTiming: "",
  enterKeyHint: "",
  ENTITY_NODE: 6,
  ENTITY_REFERENCE_NODE: 5,
  firstChild: [circular object Text],
  firstElementChild: [circular object HTMLLIElement] :
<li>1. 철수</li>,
  focus: function focus() { [native code] },
  getAnimations: function getAnimations() { [native code] },
  getAttribute: function getAttribute() { [native code] },
  getAttributeNames: function getAttributeNames() { [native code] },
  getAttributeNode: function getAttributeNode() { [native code] },
  getAttributeNodeNS: function getAttributeNodeNS() { [native code] },
  getAttributeNS: function getAttributeNS() { [native code] },
  getBoundingClientRect: function getBoundingClientRect() { [native code] },
  getClientRects: function getClientRects() { [native code] },
  getElementsByClassName: function getElementsByClassName() { [native code] },
  getElementsByTagName: function getElementsByTagName() { [native code] },
  getElementsByTagNameNS: function getElementsByTagNameNS() { [native code] },
  getRootNode: function getRootNode() { [native code] },
  hasAttribute: function hasAttribute() { [native code] },
  hasAttributeNS: function hasAttributeNS() { [native code] },
  hasAttributes: function hasAttributes() { [native code] },
  hasChildNodes: function hasChildNodes() { [native code] },
  hasPointerCapture: function hasPointerCapture() { [native code] },
  hidden: false,
  id: "",
  innerHTML: "
    <li>1. 철수</li>
    <li id=\"test\">2. 동건</li>
    <li>3. 토마스</li>
    <li>4. 원빈</li>
    <li>5. 인성</li>
",
  innerText: "1. 철수
2. 동건
3. 토마스
4. 원빈
5. 인성",
  inputMode: "",
  insertAdjacentElement: function insertAdjacentElement() { [native code] },
  insertAdjacentHTML: function insertAdjacentHTML() { [native code] },
  insertAdjacentText: function insertAdjacentText() { [native code] },
  insertBefore: function insertBefore() { [native code] },
  isConnected: true,
  isContentEditable: false,
  isDefaultNamespace: function isDefaultNamespace() { [native code] },
  isEqualNode: function isEqualNode() { [native code] },
  isSameNode: function isSameNode() { [native code] },
  lang: "",
  lastChild: [circular object Text],
  lastElementChild: [circular object HTMLLIElement] :
<li>5. 인성</li>,
  localName: "ul",
  lookupNamespaceURI: function lookupNamespaceURI() { [native code] },
  lookupPrefix: function lookupPrefix() { [native code] },
  matches: function matches() { [native code] },
  namespaceURI: "http://www.w3.org/1999/xhtml",
  nextElementSibling: null,
  nextSibling: [object Text] {
    addEventListener: function addEventListener() { [native code] },
    after: function after() { [native code] },
    appendChild: function appendChild() { [native code] },
    appendData: function appendData() { [native code] },
    assignedSlot: null,
    ATTRIBUTE_NODE: 2,
    baseURI: "https://null.jsbin.com/runner",
    before: function before() { [native code] },
    CDATA_SECTION_NODE: 4,
    childNodes: [object NodeList] { ... },
    cloneNode: function cloneNode() { [native code] },
    COMMENT_NODE: 8,
    compareDocumentPosition: function compareDocumentPosition() { [native code] },
    contains: function contains() { [native code] },
    data: "



",
    deleteData: function deleteData() { [native code] },
    dispatchEvent: function dispatchEvent() { [native code] },
    DOCUMENT_FRAGMENT_NODE: 11,
    DOCUMENT_NODE: 9,
    DOCUMENT_POSITION_CONTAINED_BY: 16,
    DOCUMENT_POSITION_CONTAINS: 8,
    DOCUMENT_POSITION_DISCONNECTED: 1,
    DOCUMENT_POSITION_FOLLOWING: 4,
    DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32,
    DOCUMENT_POSITION_PRECEDING: 2,
    DOCUMENT_TYPE_NODE: 10,
    ELEMENT_NODE: 1,
    ENTITY_NODE: 6,
    ENTITY_REFERENCE_NODE: 5,
    firstChild: null,
    getRootNode: function getRootNode() { [native code] },
    hasChildNodes: function hasChildNodes() { [native code] },
    insertBefore: function insertBefore() { [native code] },
    insertData: function insertData() { [native code] },
    isConnected: true,
    isDefaultNamespace: function isDefaultNamespace() { [native code] },
    isEqualNode: function isEqualNode() { [native code] },
    isSameNode: function isSameNode() { [native code] },
    lastChild: null,
    length: 4,
    lookupNamespaceURI: function lookupNamespaceURI() { [native code] },
    lookupPrefix: function lookupPrefix() { [native code] },
    nextElementSibling: null,
    nextSibling: [object Comment] { ... },
    nodeName: "#text",
    nodeType: 3,
    nodeValue: "



",
    normalize: function normalize() { [native code] },
    NOTATION_NODE: 12,
    ownerDocument: [object HTMLDocument] { ... },
    parentElement: [object HTMLDivElement] { ... },
    parentNode: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
    <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
    
    
    
      <ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>
    
    
    
    <!--jsbin live harness--></div>,
    previousElementSibling: [circular object HTMLUListElement] :
<ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>,
    previousSibling: [circular object HTMLUListElement] :
<ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>,
    PROCESSING_INSTRUCTION_NODE: 7,
    remove: function remove() { [native code] },
    removeChild: function removeChild() { [native code] },
    removeEventListener: function removeEventListener() { [native code] },
    replaceChild: function replaceChild() { [native code] },
    replaceData: function replaceData() { [native code] },
    replaceWith: function replaceWith() { [native code] },
    splitText: function splitText() { [native code] },
    substringData: function substringData() { [native code] },
    TEXT_NODE: 3,
    textContent: "



",
    wholeText: "



"
  },
  nodeName: "UL",
  nodeType: 1,
  nodeValue: null,
  nonce: "",
  normalize: function normalize() { [native code] },
  NOTATION_NODE: 12,
  offsetHeight: 105,
  offsetLeft: 0,
  offsetParent: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
  <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
  
  
  
    <ul>
      <li>1. 철수</li>
      <li id="test">2. 동건</li>
      <li>3. 토마스</li>
      <li>4. 원빈</li>
      <li>5. 인성</li>
  </ul>
  
  
  
  <!--jsbin live harness--></div>,
  offsetTop: 16,
  offsetWidth: 182,
  onabort: null,
  onanimationend: null,
  onanimationiteration: null,
  onanimationstart: null,
  onauxclick: null,
  onbeforecopy: null,
  onbeforecut: null,
  onbeforepaste: null,
  onbeforexrselect: null,
  onblur: null,
  oncancel: null,
  oncanplay: null,
  oncanplaythrough: null,
  onchange: null,
  onclick: null,
  onclose: null,
  oncontextmenu: null,
  oncopy: null,
  oncuechange: null,
  oncut: null,
  ondblclick: null,
  ondrag: null,
  ondragend: null,
  ondragenter: null,
  ondragleave: null,
  ondragover: null,
  ondragstart: null,
  ondrop: null,
  ondurationchange: null,
  onemptied: null,
  onended: null,
  onerror: null,
  onfocus: null,
  onformdata: null,
  onfullscreenchange: null,
  onfullscreenerror: null,
  ongotpointercapture: null,
  oninput: null,
  oninvalid: null,
  onkeydown: null,
  onkeypress: null,
  onkeyup: null,
  onload: null,
  onloadeddata: null,
  onloadedmetadata: null,
  onloadstart: null,
  onlostpointercapture: null,
  onmousedown: null,
  onmouseenter: null,
  onmouseleave: null,
  onmousemove: null,
  onmouseout: null,
  onmouseover: null,
  onmouseup: null,
  onmousewheel: null,
  onpaste: null,
  onpause: null,
  onplay: null,
  onplaying: null,
  onpointercancel: null,
  onpointerdown: null,
  onpointerenter: null,
  onpointerleave: null,
  onpointermove: null,
  onpointerout: null,
  onpointerover: null,
  onpointerrawupdate: null,
  onpointerup: null,
  onprogress: null,
  onratechange: null,
  onreset: null,
  onresize: null,
  onscroll: null,
  onsearch: null,
  onseeked: null,
  onseeking: null,
  onselect: null,
  onselectionchange: null,
  onselectstart: null,
  onstalled: null,
  onsubmit: null,
  onsuspend: null,
  ontimeupdate: null,
  ontoggle: null,
  ontransitioncancel: null,
  ontransitionend: null,
  ontransitionrun: null,
  ontransitionstart: null,
  onvolumechange: null,
  onwaiting: null,
  onwebkitanimationend: null,
  onwebkitanimationiteration: null,
  onwebkitanimationstart: null,
  onwebkitfullscreenchange: null,
  onwebkitfullscreenerror: null,
  onwebkittransitionend: null,
  onwheel: null,
  outerHTML: "<ul>
    <li>1. 철수</li>
    <li id=\"test\">2. 동건</li>
    <li>3. 토마스</li>
    <li>4. 원빈</li>
    <li>5. 인성</li>
</ul>",
  outerText: "1. 철수
2. 동건
3. 토마스
4. 원빈
5. 인성",
  ownerDocument: [circular object HTMLDocument],
  parentElement: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
  <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
  
  
  
    <ul>
      <li>1. 철수</li>
      <li id="test">2. 동건</li>
      <li>3. 토마스</li>
      <li>4. 원빈</li>
      <li>5. 인성</li>
  </ul>
  
  
  
  <!--jsbin live harness--></div>,
  parentNode: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
  <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
  
  
  
    <ul>
      <li>1. 철수</li>
      <li id="test">2. 동건</li>
      <li>3. 토마스</li>
      <li>4. 원빈</li>
      <li>5. 인성</li>
  </ul>
  
  
  
  <!--jsbin live harness--></div>,
  part: [object DOMTokenList] {
    add: function add() { [native code] },
    contains: function contains() { [native code] },
    entries: function entries() { [native code] },
    forEach: function forEach() { [native code] },
    item: function item() { [native code] },
    keys: function keys() { [native code] },
    length: 0,
    remove: function remove() { [native code] },
    replace: function replace() { [native code] },
    supports: function supports() { [native code] },
    toggle: function toggle() { [native code] },
    toString: function toString() { [native code] },
    value: "",
    values: function values() { [native code] }
  },
  prefix: null,
  prepend: function prepend() { [native code] },
  previousElementSibling: [object HTMLLinkElement] {
    accessKey: "",
    addEventListener: function addEventListener() { [native code] },
    after: function after() { [native code] },
    animate: function animate() { [native code] },
    append: function append() { [native code] },
    appendChild: function appendChild() { [native code] },
    ariaAtomic: null,
    ariaAutoComplete: null,
    ariaBusy: null,
    ariaChecked: null,
    ariaColCount: null,
    ariaColIndex: null,
    ariaColSpan: null,
    ariaCurrent: null,
    ariaDescription: null,
    ariaDisabled: null,
    ariaExpanded: null,
    ariaHasPopup: null,
    ariaHidden: null,
    ariaKeyShortcuts: null,
    ariaLabel: null,
    ariaLevel: null,
    ariaLive: null,
    ariaModal: null,
    ariaMultiLine: null,
    ariaMultiSelectable: null,
    ariaOrientation: null,
    ariaPlaceholder: null,
    ariaPosInSet: null,
    ariaPressed: null,
    ariaReadOnly: null,
    ariaRelevant: null,
    ariaRequired: null,
    ariaRoleDescription: null,
    ariaRowCount: null,
    ariaRowIndex: null,
    ariaRowSpan: null,
    ariaSelected: null,
    ariaSetSize: null,
    ariaSort: null,
    ariaValueMax: null,
    ariaValueMin: null,
    ariaValueNow: null,
    ariaValueText: null,
    as: "",
    assignedSlot: null,
    attachInternals: function attachInternals() { [native code] },
    attachShadow: function attachShadow() { [native code] },
    ATTRIBUTE_NODE: 2,
    attributes: [object NamedNodeMap] { ... },
    attributeStyleMap: [object StylePropertyMap] { ... },
    autocapitalize: "",
    autofocus: false,
    baseURI: "https://null.jsbin.com/runner",
    before: function before() { [native code] },
    blur: function blur() { [native code] },
    CDATA_SECTION_NODE: 4,
    charset: "",
    childElementCount: 0,
    childNodes: [object NodeList] { ... },
    children: [object HTMLCollection] { ... },
    classList: [object DOMTokenList] { ... },
    className: "",
    click: function click() { [native code] },
    clientHeight: 0,
    clientLeft: 0,
    clientTop: 0,
    clientWidth: 0,
    cloneNode: function cloneNode() { [native code] },
    closest: function closest() { [native code] },
    COMMENT_NODE: 8,
    compareDocumentPosition: function compareDocumentPosition() { [native code] },
    computedStyleMap: function computedStyleMap() { [native code] },
    contains: function contains() { [native code] },
    contentEditable: "inherit",
    crossOrigin: null,
    dataset: [object DOMStringMap] { ... },
    dir: "",
    disabled: false,
    dispatchEvent: function dispatchEvent() { [native code] },
    DOCUMENT_FRAGMENT_NODE: 11,
    DOCUMENT_NODE: 9,
    DOCUMENT_POSITION_CONTAINED_BY: 16,
    DOCUMENT_POSITION_CONTAINS: 8,
    DOCUMENT_POSITION_DISCONNECTED: 1,
    DOCUMENT_POSITION_FOLLOWING: 4,
    DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32,
    DOCUMENT_POSITION_PRECEDING: 2,
    DOCUMENT_TYPE_NODE: 10,
    draggable: false,
    ELEMENT_NODE: 1,
    elementTiming: "",
    enterKeyHint: "",
    ENTITY_NODE: 6,
    ENTITY_REFERENCE_NODE: 5,
    firstChild: null,
    firstElementChild: null,
    focus: function focus() { [native code] },
    getAnimations: function getAnimations() { [native code] },
    getAttribute: function getAttribute() { [native code] },
    getAttributeNames: function getAttributeNames() { [native code] },
    getAttributeNode: function getAttributeNode() { [native code] },
    getAttributeNodeNS: function getAttributeNodeNS() { [native code] },
    getAttributeNS: function getAttributeNS() { [native code] },
    getBoundingClientRect: function getBoundingClientRect() { [native code] },
    getClientRects: function getClientRects() { [native code] },
    getElementsByClassName: function getElementsByClassName() { [native code] },
    getElementsByTagName: function getElementsByTagName() { [native code] },
    getElementsByTagNameNS: function getElementsByTagNameNS() { [native code] },
    getRootNode: function getRootNode() { [native code] },
    hasAttribute: function hasAttribute() { [native code] },
    hasAttributeNS: function hasAttributeNS() { [native code] },
    hasAttributes: function hasAttributes() { [native code] },
    hasChildNodes: function hasChildNodes() { [native code] },
    hasPointerCapture: function hasPointerCapture() { [native code] },
    hidden: false,
    href: "https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css",
    hreflang: "",
    id: "",
    imageSizes: "",
    imageSrcset: "",
    innerHTML: "",
    innerText: "",
    inputMode: "",
    insertAdjacentElement: function insertAdjacentElement() { [native code] },
    insertAdjacentHTML: function insertAdjacentHTML() { [native code] },
    insertAdjacentText: function insertAdjacentText() { [native code] },
    insertBefore: function insertBefore() { [native code] },
    integrity: "",
    isConnected: true,
    isContentEditable: false,
    isDefaultNamespace: function isDefaultNamespace() { [native code] },
    isEqualNode: function isEqualNode() { [native code] },
    isSameNode: function isSameNode() { [native code] },
    lang: "",
    lastChild: null,
    lastElementChild: null,
    localName: "link",
    lookupNamespaceURI: function lookupNamespaceURI() { [native code] },
    lookupPrefix: function lookupPrefix() { [native code] },
    matches: function matches() { [native code] },
    media: "",
    namespaceURI: "http://www.w3.org/1999/xhtml",
    nextElementSibling: [circular object HTMLUListElement] :
<ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>,
    nextSibling: [object Text] { ... },
    nodeName: "LINK",
    nodeType: 1,
    nodeValue: null,
    nonce: "",
    normalize: function normalize() { [native code] },
    NOTATION_NODE: 12,
    offsetHeight: 0,
    offsetLeft: 0,
    offsetParent: null,
    offsetTop: 0,
    offsetWidth: 0,
    onabort: null,
    onanimationend: null,
    onanimationiteration: null,
    onanimationstart: null,
    onauxclick: null,
    onbeforecopy: null,
    onbeforecut: null,
    onbeforepaste: null,
    onbeforexrselect: null,
    onblur: null,
    oncancel: null,
    oncanplay: null,
    oncanplaythrough: null,
    onchange: null,
    onclick: null,
    onclose: null,
    oncontextmenu: null,
    oncopy: null,
    oncuechange: null,
    oncut: null,
    ondblclick: null,
    ondrag: null,
    ondragend: null,
    ondragenter: null,
    ondragleave: null,
    ondragover: null,
    ondragstart: null,
    ondrop: null,
    ondurationchange: null,
    onemptied: null,
    onended: null,
    onerror: null,
    onfocus: null,
    onformdata: null,
    onfullscreenchange: null,
    onfullscreenerror: null,
    ongotpointercapture: null,
    oninput: null,
    oninvalid: null,
    onkeydown: null,
    onkeypress: null,
    onkeyup: null,
    onload: null,
    onloadeddata: null,
    onloadedmetadata: null,
    onloadstart: null,
    onlostpointercapture: null,
    onmousedown: null,
    onmouseenter: null,
    onmouseleave: null,
    onmousemove: null,
    onmouseout: null,
    onmouseover: null,
    onmouseup: null,
    onmousewheel: null,
    onpaste: null,
    onpause: null,
    onplay: null,
    onplaying: null,
    onpointercancel: null,
    onpointerdown: null,
    onpointerenter: null,
    onpointerleave: null,
    onpointermove: null,
    onpointerout: null,
    onpointerover: null,
    onpointerrawupdate: null,
    onpointerup: null,
    onprogress: null,
    onratechange: null,
    onreset: null,
    onresize: null,
    onscroll: null,
    onsearch: null,
    onseeked: null,
    onseeking: null,
    onselect: null,
    onselectionchange: null,
    onselectstart: null,
    onstalled: null,
    onsubmit: null,
    onsuspend: null,
    ontimeupdate: null,
    ontoggle: null,
    ontransitioncancel: null,
    ontransitionend: null,
    ontransitionrun: null,
    ontransitionstart: null,
    onvolumechange: null,
    onwaiting: null,
    onwebkitanimationend: null,
    onwebkitanimationiteration: null,
    onwebkitanimationstart: null,
    onwebkitfullscreenchange: null,
    onwebkitfullscreenerror: null,
    onwebkittransitionend: null,
    onwheel: null,
    outerHTML: "<link href=\"https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css\" rel=\"stylesheet\" type=\"text/css\">",
    outerText: "",
    ownerDocument: [circular object HTMLDocument],
    parentElement: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
    <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
    
    
    
      <ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>
    
    
    
    <!--jsbin live harness--></div>,
    parentNode: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
    <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
    
    
    
      <ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>
    
    
    
    <!--jsbin live harness--></div>,
    part: [object DOMTokenList] { ... },
    prefix: null,
    prepend: function prepend() { [native code] },
    previousElementSibling: null,
    previousSibling: [object Text] { ... },
    PROCESSING_INSTRUCTION_NODE: 7,
    querySelector: function querySelector() { [native code] },
    querySelectorAll: function querySelectorAll() { [native code] },
    referrerPolicy: "",
    rel: "stylesheet",
    releasePointerCapture: function releasePointerCapture() { [native code] },
    relList: [object DOMTokenList] { ... },
    remove: function remove() { [native code] },
    removeAttribute: function removeAttribute() { [native code] },
    removeAttributeNode: function removeAttributeNode() { [native code] },
    removeAttributeNS: function removeAttributeNS() { [native code] },
    removeChild: function removeChild() { [native code] },
    removeEventListener: function removeEventListener() { [native code] },
    replaceChild: function replaceChild() { [native code] },
    replaceChildren: function replaceChildren() { [native code] },
    replaceWith: function replaceWith() { [native code] },
    requestFullscreen: function requestFullscreen() { [native code] },
    requestPointerLock: function requestPointerLock() { [native code] },
    rev: "",
    scroll: function scroll() { [native code] },
    scrollBy: function scrollBy() { [native code] },
    scrollHeight: 0,
    scrollIntoView: function scrollIntoView() { [native code] },
    scrollIntoViewIfNeeded: function scrollIntoViewIfNeeded() { [native code] },
    scrollLeft: 0,
    scrollTo: function scrollTo() { [native code] },
    scrollTop: 0,
    scrollWidth: 0,
    setAttribute: function setAttribute() { [native code] },
    setAttributeNode: function setAttributeNode() { [native code] },
    setAttributeNodeNS: function setAttributeNodeNS() { [native code] },
    setAttributeNS: function setAttributeNS() { [native code] },
    setPointerCapture: function setPointerCapture() { [native code] },
    shadowRoot: null,
    sheet: [object CSSStyleSheet] { ... },
    sizes: [object DOMTokenList] { ... },
    slot: "",
    spellcheck: true,
    style: [object CSSStyleDeclaration] { ... },
    tabIndex: -1,
    tagName: "LINK",
    target: "",
    TEXT_NODE: 3,
    textContent: "",
    title: "",
    toggleAttribute: function toggleAttribute() { [native code] },
    translate: true,
    type: "text/css",
    webkitMatchesSelector: function webkitMatchesSelector() { [native code] },
    webkitRequestFullScreen: function webkitRequestFullScreen() { [native code] },
    webkitRequestFullscreen: function webkitRequestFullscreen() { [native code] }
  },
  previousSibling: [object Text] {
    addEventListener: function addEventListener() { [native code] },
    after: function after() { [native code] },
    appendChild: function appendChild() { [native code] },
    appendData: function appendData() { [native code] },
    assignedSlot: null,
    ATTRIBUTE_NODE: 2,
    baseURI: "https://null.jsbin.com/runner",
    before: function before() { [native code] },
    CDATA_SECTION_NODE: 4,
    childNodes: [object NodeList] { ... },
    cloneNode: function cloneNode() { [native code] },
    COMMENT_NODE: 8,
    compareDocumentPosition: function compareDocumentPosition() { [native code] },
    contains: function contains() { [native code] },
    data: "

  ",
    deleteData: function deleteData() { [native code] },
    dispatchEvent: function dispatchEvent() { [native code] },
    DOCUMENT_FRAGMENT_NODE: 11,
    DOCUMENT_NODE: 9,
    DOCUMENT_POSITION_CONTAINED_BY: 16,
    DOCUMENT_POSITION_CONTAINS: 8,
    DOCUMENT_POSITION_DISCONNECTED: 1,
    DOCUMENT_POSITION_FOLLOWING: 4,
    DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC: 32,
    DOCUMENT_POSITION_PRECEDING: 2,
    DOCUMENT_TYPE_NODE: 10,
    ELEMENT_NODE: 1,
    ENTITY_NODE: 6,
    ENTITY_REFERENCE_NODE: 5,
    firstChild: null,
    getRootNode: function getRootNode() { [native code] },
    hasChildNodes: function hasChildNodes() { [native code] },
    insertBefore: function insertBefore() { [native code] },
    insertData: function insertData() { [native code] },
    isConnected: true,
    isDefaultNamespace: function isDefaultNamespace() { [native code] },
    isEqualNode: function isEqualNode() { [native code] },
    isSameNode: function isSameNode() { [native code] },
    lastChild: null,
    length: 4,
    lookupNamespaceURI: function lookupNamespaceURI() { [native code] },
    lookupPrefix: function lookupPrefix() { [native code] },
    nextElementSibling: [circular object HTMLUListElement] :
<ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>,
    nextSibling: [circular object HTMLUListElement] :
<ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>,
    nodeName: "#text",
    nodeType: 3,
    nodeValue: "

  ",
    normalize: function normalize() { [native code] },
    NOTATION_NODE: 12,
    ownerDocument: [circular object HTMLDocument],
    parentElement: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
    <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
    
    
    
      <ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>
    
    
    
    <!--jsbin live harness--></div>,
    parentNode: [circular object HTMLDivElement] :
<div data-role="page" data-url="/runner" tabindex="0" class="ui-page ui-body-c ui-page-active" style="min-height: 836px;">
    <link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">
    
    
    
      <ul>
        <li>1. 철수</li>
        <li id="test">2. 동건</li>
        <li>3. 토마스</li>
        <li>4. 원빈</li>
        <li>5. 인성</li>
    </ul>
    
    
    
    <!--jsbin live harness--></div>,
    previousElementSibling: [circular object HTMLLinkElement] :
<link href="https://code.jquery.com/mobile/1.1.2/jquery.mobile-1.1.2.css" rel="stylesheet" type="text/css">,
    previousSibling: [object Text] { ... },
    PROCESSING_INSTRUCTION_NODE: 7,
    remove: function remove() { [native code] },
    removeChild: function removeChild() { [native code] },
    removeEventListener: function removeEventListener() { [native code] },
    replaceChild: function replaceChild() { [native code] },
    replaceData: function replaceData() { [native code] },
    replaceWith: function replaceWith() { [native code] },
    splitText: function splitText() { [native code] },
    substringData: function substringData() { [native code] },
    TEXT_NODE: 3,
    textContent: "

  ",
    wholeText: "



  "
  },
  PROCESSING_INSTRUCTION_NODE: 7,
  querySelector: function querySelector() { [native code] },
  querySelectorAll: function querySelectorAll() { [native code] },
  releasePointerCapture: function releasePointerCapture() { [native code] },
  remove: function remove() { [native code] },
  removeAttribute: function removeAttribute() { [native code] },
  removeAttributeNode: function removeAttributeNode() { [native code] },
  removeAttributeNS: function removeAttributeNS() { [native code] },
  removeChild: function removeChild() { [native code] },
  removeEventListener: function removeEventListener() { [native code] },
  replaceChild: function replaceChild() { [native code] },
  replaceChildren: function replaceChildren() { [native code] },
  replaceWith: function replaceWith() { [native code] },
  requestFullscreen: function requestFullscreen() { [native code] },
  requestPointerLock: function requestPointerLock() { [native code] },
  scroll: function scroll() { [native code] },
  scrollBy: function scrollBy() { [native code] },
  scrollHeight: 105,
  scrollIntoView: function scrollIntoView() { [native code] },
  scrollIntoViewIfNeeded: function scrollIntoViewIfNeeded() { [native code] },
  scrollLeft: 0,
  scrollTo: function scrollTo() { [native code] },
  scrollTop: 0,
  scrollWidth: 182,
  setAttribute: function setAttribute() { [native code] },
  setAttributeNode: function setAttributeNode() { [native code] },
  setAttributeNodeNS: function setAttributeNodeNS() { [native code] },
  setAttributeNS: function setAttributeNS() { [native code] },
  setPointerCapture: function setPointerCapture() { [native code] },
  shadowRoot: null,
  slot: "",
  spellcheck: true,
  style: [object CSSStyleDeclaration] {
    alignContent: "",
    alignItems: "",
    alignmentBaseline: "",
    alignSelf: "",
    all: "",
    animation: "",
    animationDelay: "",
    animationDirection: "",
    animationDuration: "",
    animationFillMode: "",
    animationIterationCount: "",
    animationName: "",
    animationPlayState: "",
    animationTimingFunction: "",
    appearance: "",
    ascentOverride: "",
    aspectRatio: "",
    backdropFilter: "",
    backfaceVisibility: "",
    background: "",
    backgroundAttachment: "",
    backgroundBlendMode: "",
    backgroundClip: "",
    backgroundColor: "",
    backgroundImage: "",
    backgroundOrigin: "",
    backgroundPosition: "",
    backgroundPositionX: "",
    backgroundPositionY: "",
    backgroundRepeat: "",
    backgroundRepeatX: "",
    backgroundRepeatY: "",
    backgroundSize: "",
    baselineShift: "",
    blockSize: "",
    border: "",
    borderBlock: "",
    borderBlockColor: "",
    borderBlockEnd: "",
    borderBlockEndColor: "",
    borderBlockEndStyle: "",
    borderBlockEndWidth: "",
    borderBlockStart: "",
    borderBlockStartColor: "",
    borderBlockStartStyle: "",
    borderBlockStartWidth: "",
    borderBlockStyle: "",
    borderBlockWidth: "",
    borderBottom: "",
    borderBottomColor: "",
    borderBottomLeftRadius: "",
    borderBottomRightRadius: "",
    borderBottomStyle: "",
    borderBottomWidth: "",
    borderCollapse: "",
    borderColor: "",
    borderEndEndRadius: "",
    borderEndStartRadius: "",
    borderImage: "",
    borderImageOutset: "",
    borderImageRepeat: "",
    borderImageSlice: "",
    borderImageSource: "",
    borderImageWidth: "",
    borderInline: "",
    borderInlineColor: "",
    borderInlineEnd: "",
    borderInlineEndColor: "",
    borderInlineEndStyle: "",
    borderInlineEndWidth: "",
    borderInlineStart: "",
    borderInlineStartColor: "",
    borderInlineStartStyle: "",
    borderInlineStartWidth: "",
    borderInlineStyle: "",
    borderInlineWidth: "",
    borderLeft: "",
    borderLeftColor: "",
    borderLeftStyle: "",
    borderLeftWidth: "",
    borderRadius: "",
    borderRight: "",
    borderRightColor: "",
    borderRightStyle: "",
    borderRightWidth: "",
    borderSpacing: "",
    borderStartEndRadius: "",
    borderStartStartRadius: "",
    borderStyle: "",
    borderTop: "",
    borderTopColor: "",
    borderTopLeftRadius: "",
    borderTopRightRadius: "",
    borderTopStyle: "",
    borderTopWidth: "",
    borderWidth: "",
    bottom: "",
    boxShadow: "",
    boxSizing: "",
    breakAfter: "",
    breakBefore: "",
    breakInside: "",
    bufferedRendering: "",
    captionSide: "",
    caretColor: "",
    clear: "",
    clip: "",
    clipPath: "",
    clipRule: "",
    color: "",
    colorInterpolation: "",
    colorInterpolationFilters: "",
    colorRendering: "",
    colorScheme: "",
    columnCount: "",
    columnFill: "",
    columnGap: "",
    columnRule: "",
    columnRuleColor: "",
    columnRuleStyle: "",
    columnRuleWidth: "",
    columns: "",
    columnSpan: "",
    columnWidth: "",
    contain: "",
    containIntrinsicSize: "",
    content: "",
    contentVisibility: "",
    counterIncrement: "",
    counterReset: "",
    counterSet: "",
    cssFloat: "",
    cssText: "",
    cursor: "",
    cx: "",
    cy: "",
    d: "",
    descentOverride: "",
    direction: "",
    display: "",
    dominantBaseline: "",
    emptyCells: "",
    fill: "",
    fillOpacity: "",
    fillRule: "",
    filter: "",
    flex: "",
    flexBasis: "",
    flexDirection: "",
    flexFlow: "",
    flexGrow: "",
    flexShrink: "",
    flexWrap: "",
    float: "",
    floodColor: "",
    floodOpacity: "",
    font: "",
    fontDisplay: "",
    fontFamily: "",
    fontFeatureSettings: "",
    fontKerning: "",
    fontOpticalSizing: "",
    fontSize: "",
    fontStretch: "",
    fontStyle: "",
    fontVariant: "",
    fontVariantCaps: "",
    fontVariantEastAsian: "",
    fontVariantLigatures: "",
    fontVariantNumeric: "",
    fontVariationSettings: "",
    fontWeight: "",
    forcedColorAdjust: "",
    gap: "",
    getPropertyPriority: function getPropertyPriority() { [native code] },
    getPropertyValue: function getPropertyValue() { [native code] },
    grid: "",
    gridArea: "",
    gridAutoColumns: "",
    gridAutoFlow: "",
    gridAutoRows: "",
    gridColumn: "",
    gridColumnEnd: "",
    gridColumnGap: "",
    gridColumnStart: "",
    gridGap: "",
    gridRow: "",
    gridRowEnd: "",
    gridRowGap: "",
    gridRowStart: "",
    gridTemplate: "",
    gridTemplateAreas: "",
    gridTemplateColumns: "",
    gridTemplateRows: "",
    height: "",
    hyphens: "",
    imageOrientation: "",
    imageRendering: "",
    inherits: "",
    initialValue: "",
    inlineSize: "",
    inset: "",
    insetBlock: "",
    insetBlockEnd: "",
    insetBlockStart: "",
    insetInline: "",
    insetInlineEnd: "",
    insetInlineStart: "",
    isolation: "",
    item: function item() { [native code] },
    justifyContent: "",
    justifyItems: "",
    justifySelf: "",
    left: "",
    length: 0,
    letterSpacing: "",
    lightingColor: "",
    lineBreak: "",
    lineGapOverride: "",
    lineHeight: "",
    listStyle: "",
    listStyleImage: "",
    listStylePosition: "",
    listStyleType: "",
    margin: "",
    marginBlock: "",
    marginBlockEnd: "",
    marginBlockStart: "",
    marginBottom: "",
    marginInline: "",
    marginInlineEnd: "",
    marginInlineStart: "",
    marginLeft: "",
    marginRight: "",
    marginTop: "",
    marker: "",
    markerEnd: "",
    markerMid: "",
    markerStart: "",
    mask: "",
    maskType: "",
    maxBlockSize: "",
    maxHeight: "",
    maxInlineSize: "",
    maxWidth: "",
    maxZoom: "",
    minBlockSize: "",
    minHeight: "",
    minInlineSize: "",
    minWidth: "",
    minZoom: "",
    mixBlendMode: "",
    objectFit: "",
    objectPosition: "",
    offset: "",
    offsetDistance: "",
    offsetPath: "",
    offsetRotate: "",
    opacity: "",
    order: "",
    orientation: "",
    orphans: "",
    outline: "",
    outlineColor: "",
    outlineOffset: "",
    outlineStyle: "",
    outlineWidth: "",
    overflow: "",
    overflowAnchor: "",
    overflowWrap: "",
    overflowX: "",
    overflowY: "",
    overscrollBehavior: "",
    overscrollBehaviorBlock: "",
    overscrollBehaviorInline: "",
    overscrollBehaviorX: "",
    overscrollBehaviorY: "",
    padding: "",
    paddingBlock: "",
    paddingBlockEnd: "",
    paddingBlockStart: "",
    paddingBottom: "",
    paddingInline: "",
    paddingInlineEnd: "",
    paddingInlineStart: "",
    paddingLeft: "",
    paddingRight: "",
    paddingTop: "",
    page: "",
    pageBreakAfter: "",
    pageBreakBefore: "",
    pageBreakInside: "",
    pageOrientation: "",
    paintOrder: "",
    parentRule: null,
    perspective: "",
    perspectiveOrigin: "",
    placeContent: "",
    placeItems: "",
    placeSelf: "",
    pointerEvents: "",
    position: "",
    quotes: "",
    r: "",
    removeProperty: function removeProperty() { [native code] },
    resize: "",
    right: "",
    rowGap: "",
    rubyPosition: "",
    rx: "",
    ry: "",
    scrollBehavior: "",
    scrollMargin: "",
    scrollMarginBlock: "",
    scrollMarginBlockEnd: "",
    scrollMarginBlockStart: "",
    scrollMarginBottom: "",
    scrollMarginInline: "",
    scrollMarginInlineEnd: "",
    scrollMarginInlineStart: "",
    scrollMarginLeft: "",
    scrollMarginRight: "",
    scrollMarginTop: "",
    scrollPadding: "",
    scrollPaddingBlock: "",
    scrollPaddingBlockEnd: "",
    scrollPaddingBlockStart: "",
    scrollPaddingBottom: "",
    scrollPaddingInline: "",
    scrollPaddingInlineEnd: "",
    scrollPaddingInlineStart: "",
    scrollPaddingLeft: "",
    scrollPaddingRight: "",
    scrollPaddingTop: "",
    scrollSnapAlign: "",
    scrollSnapStop: "",
    scrollSnapType: "",
    setProperty: function setProperty() { [native code] },
    shapeImageThreshold: "",
    shapeMargin: "",
    shapeOutside: "",
    shapeRendering: "",
    size: "",
    speak: "",
    src: "",
    stopColor: "",
    stopOpacity: "",
    stroke: "",
    strokeDasharray: "",
    strokeDashoffset: "",
    strokeLinecap: "",
    strokeLinejoin: "",
    strokeMiterlimit: "",
    strokeOpacity: "",
    strokeWidth: "",
    syntax: "",
    tableLayout: "",
    tabSize: "",
    textAlign: "",
    textAlignLast: "",
    textAnchor: "",
    textCombineUpright: "",
    textDecoration: "",
    textDecorationColor: "",
    textDecorationLine: "",
    textDecorationSkipInk: "",
    textDecorationStyle: "",
    textDecorationThickness: "",
    textIndent: "",
    textOrientation: "",
    textOverflow: "",
    textRendering: "",
    textShadow: "",
    textSizeAdjust: "",
    textTransform: "",
    textUnderlineOffset: "",
    textUnderlinePosition: "",
    top: "",
    touchAction: "",
    transform: "",
    transformBox: "",
    transformOrigin: "",
    transformStyle: "",
    transition: "",
    transitionDelay: "",
    transitionDuration: "",
    transitionProperty: "",
    transitionTimingFunction: "",
    unicodeBidi: "",
    unicodeRange: "",
    userSelect: "",
    userZoom: "",
    vectorEffect: "",
    verticalAlign: "",
    visibility: "",
    webkitAlignContent: "",
    webkitAlignItems: "",
    webkitAlignSelf: "",
    webkitAnimation: "",
    webkitAnimationDelay: "",
    webkitAnimationDirection: "",
    webkitAnimationDuration: "",
    webkitAnimationFillMode: "",
    webkitAnimationIterationCount: "",
    webkitAnimationName: "",
    webkitAnimationPlayState: "",
    webkitAnimationTimingFunction: "",
    webkitAppearance: "",
    webkitAppRegion: "",
    webkitBackfaceVisibility: "",
    webkitBackgroundClip: "",
    webkitBackgroundOrigin: "",
    webkitBackgroundSize: "",
    webkitBorderAfter: "",
    webkitBorderAfterColor: "",
    webkitBorderAfterStyle: "",
    webkitBorderAfterWidth: "",
    webkitBorderBefore: "",
    webkitBorderBeforeColor: "",
    webkitBorderBeforeStyle: "",
    webkitBorderBeforeWidth: "",
    webkitBorderBottomLeftRadius: "",
    webkitBorderBottomRightRadius: "",
    webkitBorderEnd: "",
    webkitBorderEndColor: "",
    webkitBorderEndStyle: "",
    webkitBorderEndWidth: "",
    webkitBorderHorizontalSpacing: "",
    webkitBorderImage: "",
    webkitBorderRadius: "",
    webkitBorderStart: "",
    webkitBorderStartColor: "",
    webkitBorderStartStyle: "",
    webkitBorderStartWidth: "",
    webkitBorderTopLeftRadius: "",
    webkitBorderTopRightRadius: "",
    webkitBorderVerticalSpacing: "",
    webkitBoxAlign: "",
    webkitBoxDecorationBreak: "",
    webkitBoxDirection: "",
    webkitBoxFlex: "",
    webkitBoxOrdinalGroup: "",
    webkitBoxOrient: "",
    webkitBoxPack: "",
    webkitBoxReflect: "",
    webkitBoxShadow: "",
    webkitBoxSizing: "",
    webkitClipPath: "",
    webkitColumnBreakAfter: "",
    webkitColumnBreakBefore: "",
    webkitColumnBreakInside: "",
    webkitColumnCount: "",
    webkitColumnGap: "",
    webkitColumnRule: "",
    webkitColumnRuleColor: "",
    webkitColumnRuleStyle: "",
    webkitColumnRuleWidth: "",
    webkitColumns: "",
    webkitColumnSpan: "",
    webkitColumnWidth: "",
    webkitFilter: "",
    webkitFlex: "",
    webkitFlexBasis: "",
    webkitFlexDirection: "",
    webkitFlexFlow: "",
    webkitFlexGrow: "",
    webkitFlexShrink: "",
    webkitFlexWrap: "",
    webkitFontFeatureSettings: "",
    webkitFontSmoothing: "",
    webkitHighlight: "",
    webkitHyphenateCharacter: "",
    webkitJustifyContent: "",
    webkitLineBreak: "",
    webkitLineClamp: "",
    webkitLocale: "",
    webkitLogicalHeight: "",
    webkitLogicalWidth: "",
    webkitMarginAfter: "",
    webkitMarginBefore: "",
    webkitMarginEnd: "",
    webkitMarginStart: "",
    webkitMask: "",
    webkitMaskBoxImage: "",
    webkitMaskBoxImageOutset: "",
    webkitMaskBoxImageRepeat: "",
    webkitMaskBoxImageSlice: "",
    webkitMaskBoxImageSource: "",
    webkitMaskBoxImageWidth: "",
    webkitMaskClip: "",
    webkitMaskComposite: "",
    webkitMaskImage: "",
    webkitMaskOrigin: "",
    webkitMaskPosition: "",
    webkitMaskPositionX: "",
    webkitMaskPositionY: "",
    webkitMaskRepeat: "",
    webkitMaskRepeatX: "",
    webkitMaskRepeatY: "",
    webkitMaskSize: "",
    webkitMaxLogicalHeight: "",
    webkitMaxLogicalWidth: "",
    webkitMinLogicalHeight: "",
    webkitMinLogicalWidth: "",
    webkitOpacity: "",
    webkitOrder: "",
    webkitPaddingAfter: "",
    webkitPaddingBefore: "",
    webkitPaddingEnd: "",
    webkitPaddingStart: "",
    webkitPerspective: "",
    webkitPerspectiveOrigin: "",
    webkitPerspectiveOriginX: "",
    webkitPerspectiveOriginY: "",
    webkitPrintColorAdjust: "",
    webkitRtlOrdering: "",
    webkitRubyPosition: "",
    webkitShapeImageThreshold: "",
    webkitShapeMargin: "",
    webkitShapeOutside: "",
    webkitTapHighlightColor: "",
    webkitTextCombine: "",
    webkitTextDecorationsInEffect: "",
    webkitTextEmphasis: "",
    webkitTextEmphasisColor: "",
    webkitTextEmphasisPosition: "",
    webkitTextEmphasisStyle: "",
    webkitTextFillColor: "",
    webkitTextOrientation: "",
    webkitTextSecurity: "",
    webkitTextSizeAdjust: "",
    webkitTextStroke: "",
    webkitTextStrokeColor: "",
    webkitTextStrokeWidth: "",
    webkitTransform: "",
    webkitTransformOrigin: "",
    webkitTransformOriginX: "",
    webkitTransformOriginY: "",
    webkitTransformOriginZ: "",
    webkitTransformStyle: "",
    webkitTransition: "",
    webkitTransitionDelay: "",
    webkitTransitionDuration: "",
    webkitTransitionProperty: "",
    webkitTransitionTimingFunction: "",
    webkitUserDrag: "",
    webkitUserModify: "",
    webkitUserSelect: "",
    webkitWritingMode: "",
    whiteSpace: "",
    widows: "",
    width: "",
    willChange: "",
    wordBreak: "",
    wordSpacing: "",
    wordWrap: "",
    writingMode: "",
    x: "",
    y: "",
    zIndex: "",
    zoom: ""
  },
  tabIndex: -1,
  tagName: "UL",
  TEXT_NODE: 3,
  textContent: "
    1. 철수
    2. 동건
    3. 토마스
    4. 원빈
    5. 인성
",
  title: "",
  toggleAttribute: function toggleAttribute() { [native code] },
  translate: true,
  type: "",
  webkitMatchesSelector: function webkitMatchesSelector() { [native code] },
  webkitRequestFullScreen: function webkitRequestFullScreen() { [native code] },
  webkitRequestFullscreen: function webkitRequestFullscreen() { [native code] }
}

 

 

728x90
반응형
Comments