| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- import { patchProp } from '../src/patchProp'
- import { xlinkNS } from '../src/modules/attrs'
- describe('runtime-dom: attrs patching', () => {
- test('xlink attributes', () => {
- const el = document.createElementNS('http://www.w3.org/2000/svg', 'use')
- patchProp(el, 'xlink:href', null, 'a', 'svg')
- expect(el.getAttributeNS(xlinkNS, 'href')).toBe('a')
- patchProp(el, 'xlink:href', 'a', null, 'svg')
- expect(el.getAttributeNS(xlinkNS, 'href')).toBe(null)
- })
- test('textContent attributes /w svg', () => {
- const el = document.createElementNS('http://www.w3.org/2000/svg', 'use')
- patchProp(el, 'textContent', null, 'foo', 'svg')
- expect(el.attributes.length).toBe(0)
- expect(el.innerHTML).toBe('foo')
- })
- test('boolean attributes', () => {
- const el = document.createElement('input')
- patchProp(el, 'readonly', null, true)
- expect(el.getAttribute('readonly')).toBe('')
- patchProp(el, 'readonly', true, false)
- expect(el.getAttribute('readonly')).toBe(null)
- patchProp(el, 'readonly', false, '')
- expect(el.getAttribute('readonly')).toBe('')
- patchProp(el, 'readonly', '', 0)
- expect(el.getAttribute('readonly')).toBe(null)
- patchProp(el, 'readonly', 0, '0')
- expect(el.getAttribute('readonly')).toBe('')
- patchProp(el, 'readonly', '0', false)
- expect(el.getAttribute('readonly')).toBe(null)
- patchProp(el, 'readonly', false, 1)
- expect(el.getAttribute('readonly')).toBe('')
- patchProp(el, 'readonly', 1, undefined)
- expect(el.getAttribute('readonly')).toBe(null)
- })
- test('attributes', () => {
- const el = document.createElement('div')
- patchProp(el, 'foo', null, 'a')
- expect(el.getAttribute('foo')).toBe('a')
- patchProp(el, 'foo', 'a', null)
- expect(el.getAttribute('foo')).toBe(null)
- })
- // #949
- test('onxxx but non-listener attributes', () => {
- const el = document.createElement('div')
- patchProp(el, 'onwards', null, 'a')
- expect(el.getAttribute('onwards')).toBe('a')
- patchProp(el, 'onwards', 'a', null)
- expect(el.getAttribute('onwards')).toBe(null)
- })
- // #10597
- test('should allow setting attribute to symbol', () => {
- const el = document.createElement('div')
- const symbol = Symbol('foo')
- patchProp(el, 'foo', null, symbol)
- expect(el.getAttribute('foo')).toBe(symbol.toString())
- })
- // #10598
- test('should allow setting value to symbol', () => {
- const el = document.createElement('input')
- const symbol = Symbol('foo')
- patchProp(el, 'value', null, symbol)
- expect(el.value).toBe(symbol.toString())
- })
- // #11177
- test('should allow setting value to object, leaving stringification to the element/browser', () => {
- // normal behavior
- const el = document.createElement('div')
- const obj = { toString: () => 'foo' }
- patchProp(el, 'data-test', null, obj)
- expect(el.dataset.test).toBe('foo')
- const el2 = document.createElement('div')
- let testvalue: null | typeof obj = null
- // simulating a web component that implements its own setAttribute handler
- el2.setAttribute = (name, value) => {
- testvalue = value
- }
- patchProp(el2, 'data-test', null, obj)
- expect(el2.dataset.test).toBe(undefined)
- expect(testvalue).toBe(obj)
- })
- // #13946
- test('sandbox should be handled as attribute even if property exists', () => {
- const iframe = document.createElement('iframe') as any
- let propSetCount = 0
- // simulate sandbox property in jsdom environment
- Object.defineProperty(iframe, 'sandbox', {
- configurable: true,
- enumerable: true,
- get() {
- return this._sandbox
- },
- set(v) {
- propSetCount++
- this._sandbox = v
- },
- })
- patchProp(iframe, 'sandbox', null, 'allow-scripts')
- expect(iframe.getAttribute('sandbox')).toBe('allow-scripts')
- expect(propSetCount).toBe(0)
- patchProp(iframe, 'sandbox', 'allow-scripts', null)
- expect(iframe.hasAttribute('sandbox')).toBe(false)
- expect(iframe.getAttribute('sandbox')).toBe(null)
- expect(propSetCount).toBe(0)
- patchProp(iframe, 'sandbox', null, '')
- expect(iframe.getAttribute('sandbox')).toBe('')
- expect(iframe.hasAttribute('sandbox')).toBe(true)
- expect(propSetCount).toBe(0)
- delete iframe.sandbox
- })
- })
|