tooltip.js 39.3 KB
Newer Older
Jacob Thornton's avatar
Jacob Thornton committed
1
$(function () {
XhmikosR's avatar
XhmikosR committed
2
  'use strict';
Jacob Thornton's avatar
Jacob Thornton committed
3

4
  QUnit.module('tooltip plugin')
XhmikosR's avatar
XhmikosR committed
5

6
  QUnit.test('should be defined on jquery object', function (assert) {
7
    assert.ok($(document.body).tooltip, 'tooltip method is defined')
XhmikosR's avatar
XhmikosR committed
8
9
  })

10
  QUnit.module('tooltip', {
11
    beforeEach: function () {
12
13
14
      // Run all tests in noConflict mode -- it's the only way to ensure that the plugin works in noConflict mode
      $.fn.bootstrapTooltip = $.fn.tooltip.noConflict()
    },
15
    afterEach: function () {
16
17
18
19
20
      $.fn.tooltip = $.fn.bootstrapTooltip
      delete $.fn.bootstrapTooltip
    }
  })

21
  QUnit.test('should provide no conflict', function (assert) {
22
    assert.strictEqual($.fn.tooltip, undefined, 'tooltip was set back to undefined (org value)')
23
24
  })

25
  QUnit.test('should return jquery collection containing the element', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
26
27
    var $el = $('<div/>')
    var $tooltip = $el.bootstrapTooltip()
28
29
    assert.ok($tooltip instanceof $, 'returns jquery collection')
    assert.strictEqual($tooltip[0], $el[0], 'collection contains element')
XhmikosR's avatar
XhmikosR committed
30
31
  })

32
  QUnit.test('should expose default settings', function (assert) {
33
    assert.ok($.fn.bootstrapTooltip.Constructor.DEFAULTS, 'defaults is defined')
XhmikosR's avatar
XhmikosR committed
34
35
  })

36
  QUnit.test('should empty title attribute', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
37
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
38
    assert.strictEqual($trigger.attr('title'), '', 'title attribute was emptied')
XhmikosR's avatar
XhmikosR committed
39
40
  })

41
  QUnit.test('should add data attribute for referencing original title', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
42
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>').bootstrapTooltip()
43
    assert.strictEqual($trigger.attr('data-original-title'), 'Another tooltip', 'original title preserved in data attribute')
XhmikosR's avatar
XhmikosR committed
44
45
  })

46
  QUnit.test('should add aria-describedby to the trigger on show', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
47
48
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .bootstrapTooltip()
49
50
      .appendTo('#qunit-fixture')
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
51

52
53
    var id = $('.tooltip').attr('id')

54
55
56
    assert.strictEqual($('#' + id).length, 1, 'has a unique id')
    assert.strictEqual($('.tooltip').attr('aria-describedby'), $trigger.attr('id'), 'tooltip id and aria-describedby on trigger match')
    assert.ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
57
58
  })

59
  QUnit.test('should remove aria-describedby from trigger on hide', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
60
61
    var $trigger = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .bootstrapTooltip()
62
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
63
64

    $trigger.bootstrapTooltip('show')
65
    assert.ok($trigger[0].hasAttribute('aria-describedby'), 'trigger has aria-describedby')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
66
67

    $trigger.bootstrapTooltip('hide')
68
    assert.ok(!$trigger[0].hasAttribute('aria-describedby'), 'trigger does not have aria-describedby')
69
70
  })

71
  QUnit.test('should assign a unique id tooltip element', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
72
    $('<a href="#" rel="tooltip" title="Another tooltip"/>')
73
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
74
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
75

XhmikosR's avatar
XhmikosR committed
76
    var id = $('.tooltip').attr('id')
77

78
79
    assert.strictEqual($('#' + id).length, 1, 'tooltip has unique id')
    assert.strictEqual(id.indexOf('tooltip'), 0, 'tooltip id has prefix')
80
81
  })

82
  QUnit.test('should place tooltips relative to placement option', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
83
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
84
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
85
      .bootstrapTooltip({ placement: 'bottom' })
XhmikosR's avatar
XhmikosR committed
86

Heinrich Fenkart's avatar
Heinrich Fenkart committed
87
    $tooltip.bootstrapTooltip('show')
88
    assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
89
90

    $tooltip.bootstrapTooltip('hide')
91
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
92
93
  })

94
  QUnit.test('should allow html entities', function (assert) {
95
    var $tooltip = $('<a href="#" rel="tooltip" title="&lt;b&gt;@fat&lt;/b&gt;"/>')
XhmikosR's avatar
XhmikosR committed
96
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
97
      .bootstrapTooltip({ html: true })
XhmikosR's avatar
XhmikosR committed
98

Heinrich Fenkart's avatar
Heinrich Fenkart committed
99
    $tooltip.bootstrapTooltip('show')
100
    assert.notEqual($('.tooltip b').length, 0, 'b tag was inserted')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
101
102

    $tooltip.bootstrapTooltip('hide')
103
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
104
105
  })

106
  QUnit.test('should respect custom classes', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
107
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
108
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
109
      .bootstrapTooltip({ template: '<div class="tooltip some-class"><div class="tooltip-arrow"/><div class="tooltip-inner"/></div>' })
XhmikosR's avatar
XhmikosR committed
110

Heinrich Fenkart's avatar
Heinrich Fenkart committed
111
    $tooltip.bootstrapTooltip('show')
112
    assert.ok($('.tooltip').hasClass('some-class'), 'custom class is present')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
113
114

    $tooltip.bootstrapTooltip('hide')
115
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed')
XhmikosR's avatar
XhmikosR committed
116
117
  })

118
  QUnit.test('should fire show event', function (assert) {
119
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
120
121

    $('<div title="tooltip title"/>')
XhmikosR's avatar
XhmikosR committed
122
      .on('show.bs.tooltip', function () {
123
        assert.ok(true, 'show event fired')
124
        done()
XhmikosR's avatar
XhmikosR committed
125
      })
126
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
127
128
  })

129
  QUnit.test('should fire shown event', function (assert) {
130
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
131
132
133

    $('<div title="tooltip title"></div>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
134
      .on('shown.bs.tooltip', function () {
135
        assert.ok(true, 'shown was called')
136
        done()
XhmikosR's avatar
XhmikosR committed
137
      })
138
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
139
140
  })

141
  QUnit.test('should not fire shown event when show was prevented', function (assert) {
142
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
143
144

    $('<div title="tooltip title"/>')
XhmikosR's avatar
XhmikosR committed
145
146
      .on('show.bs.tooltip', function (e) {
        e.preventDefault()
147
        assert.ok(true, 'show event fired')
148
        done()
XhmikosR's avatar
XhmikosR committed
149
150
      })
      .on('shown.bs.tooltip', function () {
151
        assert.ok(false, 'shown event fired')
XhmikosR's avatar
XhmikosR committed
152
      })
153
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
154
155
  })

156
  QUnit.test('should fire hide event', function (assert) {
157
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
158
159
160

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
161
      .on('shown.bs.tooltip', function () {
162
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
163
164
      })
      .on('hide.bs.tooltip', function () {
165
        assert.ok(true, 'hide event fired')
166
        done()
XhmikosR's avatar
XhmikosR committed
167
      })
168
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
169
170
  })

171
  QUnit.test('should fire hidden event', function (assert) {
172
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
173
174
175

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
176
      .on('shown.bs.tooltip', function () {
177
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
178
179
      })
      .on('hidden.bs.tooltip', function () {
180
        assert.ok(true, 'hidden event fired')
181
        done()
XhmikosR's avatar
XhmikosR committed
182
      })
183
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
184
185
  })

186
  QUnit.test('should not fire hidden event when hide was prevented', function (assert) {
187
    var done = assert.async()
Heinrich Fenkart's avatar
Heinrich Fenkart committed
188
189
190

    $('<div title="tooltip title"/>')
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
191
      .on('shown.bs.tooltip', function () {
192
        $(this).bootstrapTooltip('hide')
XhmikosR's avatar
XhmikosR committed
193
194
195
      })
      .on('hide.bs.tooltip', function (e) {
        e.preventDefault()
196
        assert.ok(true, 'hide event fired')
197
        done()
XhmikosR's avatar
XhmikosR committed
198
199
      })
      .on('hidden.bs.tooltip', function () {
200
        assert.ok(false, 'hidden event fired')
XhmikosR's avatar
XhmikosR committed
201
      })
202
      .bootstrapTooltip('show')
XhmikosR's avatar
XhmikosR committed
203
204
  })

205
  QUnit.test('should destroy tooltip', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
206
207
208
209
    var $tooltip = $('<div/>')
      .bootstrapTooltip()
      .on('click.foo', function () {})

210
211
    assert.ok($tooltip.data('bs.tooltip'), 'tooltip has data')
    assert.ok($._data($tooltip[0], 'events').mouseover && $._data($tooltip[0], 'events').mouseout, 'tooltip has hover events')
212
    assert.strictEqual($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip has extra click.foo event')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
213
214
215
216

    $tooltip.bootstrapTooltip('show')
    $tooltip.bootstrapTooltip('destroy')

217
218
    assert.ok(!$tooltip.hasClass('in'), 'tooltip is hidden')
    assert.ok(!$._data($tooltip[0], 'bs.tooltip'), 'tooltip does not have data')
219
    assert.strictEqual($._data($tooltip[0], 'events').click[0].namespace, 'foo', 'tooltip still has click.foo')
220
    assert.ok(!$._data($tooltip[0], 'events').mouseover && !$._data($tooltip[0], 'events').mouseout, 'tooltip does not have hover events')
XhmikosR's avatar
XhmikosR committed
221
222
  })

223
  QUnit.test('should show tooltip with delegate selector on click', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
224
225
226
227
228
229
230
231
    var $div = $('<div><a href="#" rel="tooltip" title="Another tooltip"/></div>')
      .appendTo('#qunit-fixture')
      .bootstrapTooltip({
        selector: 'a[rel="tooltip"]',
        trigger: 'click'
      })

    $div.find('a').click()
232
    assert.ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
233
234

    $div.find('a').click()
235
    assert.strictEqual($('.tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
236
237
  })

238
  QUnit.test('should show tooltip when toggle is called', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
239
    $('<a href="#" rel="tooltip" title="tooltip on toggle"/>')
XhmikosR's avatar
XhmikosR committed
240
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
241
      .bootstrapTooltip({ trigger: 'manual' })
242
      .bootstrapTooltip('toggle')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
243

244
    assert.ok($('.tooltip').is('.fade.in'), 'tooltip is faded in')
XhmikosR's avatar
XhmikosR committed
245
246
  })

247
  QUnit.test('should hide previously shown tooltip when toggle is called on tooltip', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
248
    $('<a href="#" rel="tooltip" title="tooltip on toggle">@ResentedHook</a>')
249
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
250
      .bootstrapTooltip({ trigger: 'manual' })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
251
252
253
      .bootstrapTooltip('show')

    $('.tooltip').bootstrapTooltip('toggle')
254
    assert.ok($('.tooltip').not('.fade.in'), 'tooltip was faded out')
255
256
  })

257
  QUnit.test('should place tooltips inside body when container is body', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
258
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
XhmikosR's avatar
XhmikosR committed
259
      .appendTo('#qunit-fixture')
XhmikosR's avatar
XhmikosR committed
260
      .bootstrapTooltip({ container: 'body' })
261
      .bootstrapTooltip('show')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
262

263
    assert.notEqual($('body > .tooltip').length, 0, 'tooltip is direct descendant of body')
264
    assert.strictEqual($('#qunit-fixture > .tooltip').length, 0, 'tooltip is not in parent')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
265
266

    $tooltip.bootstrapTooltip('hide')
267
    assert.strictEqual($('body > .tooltip').length, 0, 'tooltip was removed from dom')
XhmikosR's avatar
XhmikosR committed
268
269
  })

270
  QUnit.test('should add position class before positioning so that position-specific styles are taken into account', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
271
272
273
274
    var styles = '<style>'
        + '.tooltip.right { white-space: nowrap; }'
        + '.tooltip.right .tooltip-inner { max-width: none; }'
        + '</style>'
275
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
276

fat's avatar
fat committed
277
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
278
279
280
281
282
283
284
285
    var $target = $('<a href="#" rel="tooltip" title="very very very very very very very very long tooltip in one line"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: null
      })
      .bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
XhmikosR's avatar
XhmikosR committed
286
287

    // this is some dumb hack shit because sub pixels in firefox
Heinrich Fenkart's avatar
Heinrich Fenkart committed
288
289
    var top = Math.round($target.offset().top + ($target[0].offsetHeight / 2) - ($tooltip[0].offsetHeight / 2))
    var top2 = Math.round($tooltip.offset().top)
XhmikosR's avatar
XhmikosR committed
290
    var topDiff = top - top2
291
    assert.ok(topDiff <= 1 && topDiff >= -1)
Heinrich Fenkart's avatar
Heinrich Fenkart committed
292
293
294
295
    $target.bootstrapTooltip('hide')

    $container.remove()
    $styles.remove()
XhmikosR's avatar
XhmikosR committed
296
297
  })

298
  QUnit.test('should use title attribute for tooltip text', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
299
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
XhmikosR's avatar
XhmikosR committed
300
      .appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
301
302
303
      .bootstrapTooltip()

    $tooltip.bootstrapTooltip('show')
304
    assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title from title attribute is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
305
306

    $tooltip.bootstrapTooltip('hide')
307
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
308
309
  })

310
  QUnit.test('should prefer title attribute over title option', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
311
    var $tooltip = $('<a href="#" rel="tooltip" title="Simple tooltip"/>')
XhmikosR's avatar
XhmikosR committed
312
      .appendTo('#qunit-fixture')
313
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
314
315
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
316
317

    $tooltip.bootstrapTooltip('show')
318
    assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'Simple tooltip', 'title is set from title attribute while preferred over title option')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
319
320

    $tooltip.bootstrapTooltip('hide')
321
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
322
323
  })

324
  QUnit.test('should use title option', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
325
    var $tooltip = $('<a href="#" rel="tooltip"/>')
XhmikosR's avatar
XhmikosR committed
326
      .appendTo('#qunit-fixture')
327
      .bootstrapTooltip({
XhmikosR's avatar
XhmikosR committed
328
329
        title: 'This is a tooltip with some content'
      })
Heinrich Fenkart's avatar
Heinrich Fenkart committed
330
331

    $tooltip.bootstrapTooltip('show')
332
    assert.strictEqual($('.tooltip').children('.tooltip-inner').text(), 'This is a tooltip with some content', 'title from title option is set')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
333
334

    $tooltip.bootstrapTooltip('hide')
335
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
336
337
  })

338
  QUnit.test('should be placed dynamically with the dynamic placement option', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
339
340
341
342
343
344
345
346
347
348
349
350
351
352
    var $style = $('<style> a[rel="tooltip"] { display: inline-block; position: absolute; } </style>')
    var $container = $('<div/>')
      .css({
        position: 'absolute',
        overflow: 'hidden',
        width: 600,
        height: 400,
        top: 0,
        left: 0
      })
      .appendTo(document.body)

    var $topTooltip = $('<div style="left: 0; top: 0;" rel="tooltip" title="Top tooltip">Top Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
353
      .bootstrapTooltip({ placement: 'auto' })
XhmikosR's avatar
XhmikosR committed
354

Heinrich Fenkart's avatar
Heinrich Fenkart committed
355
    $topTooltip.bootstrapTooltip('show')
356
    assert.ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')
XhmikosR's avatar
XhmikosR committed
357

Heinrich Fenkart's avatar
Heinrich Fenkart committed
358
    $topTooltip.bootstrapTooltip('hide')
359
    assert.strictEqual($('.tooltip').length, 0, 'top positioned tooltip removed from dom')
XhmikosR's avatar
XhmikosR committed
360

Heinrich Fenkart's avatar
Heinrich Fenkart committed
361
362
    var $rightTooltip = $('<div style="right: 0;" rel="tooltip" title="Right tooltip">Right Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
363
      .bootstrapTooltip({ placement: 'right auto' })
XhmikosR's avatar
XhmikosR committed
364

Heinrich Fenkart's avatar
Heinrich Fenkart committed
365
    $rightTooltip.bootstrapTooltip('show')
366
    assert.ok($('.tooltip').is('.left'), 'right positioned tooltip is dynamically positioned left')
XhmikosR's avatar
XhmikosR committed
367

Heinrich Fenkart's avatar
Heinrich Fenkart committed
368
    $rightTooltip.bootstrapTooltip('hide')
369
    assert.strictEqual($('.tooltip').length, 0, 'right positioned tooltip removed from dom')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
370
371
372

    var $leftTooltip = $('<div style="left: 0;" rel="tooltip" title="Left tooltip">Left Dynamic Tooltip</div>')
      .appendTo($container)
XhmikosR's avatar
XhmikosR committed
373
      .bootstrapTooltip({ placement: 'auto left' })
XhmikosR's avatar
XhmikosR committed
374

Heinrich Fenkart's avatar
Heinrich Fenkart committed
375
    $leftTooltip.bootstrapTooltip('show')
376
    assert.ok($('.tooltip').is('.right'), 'left positioned tooltip is dynamically positioned right')
XhmikosR's avatar
XhmikosR committed
377

Heinrich Fenkart's avatar
Heinrich Fenkart committed
378
    $leftTooltip.bootstrapTooltip('hide')
379
    assert.strictEqual($('.tooltip').length, 0, 'left positioned tooltip removed from dom')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
380
381
382

    $container.remove()
    $style.remove()
XhmikosR's avatar
XhmikosR committed
383
  })
384

385
  QUnit.test('should position tip on top if viewport has enough space and placement is "auto top"', function (assert) {
386
387
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
388
        + '#section { height: 300px; border: 1px solid red; padding-top: 50px }'
389
390
391
392
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

393
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
394
395
396
397
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
398
        viewport: '#section'
399
400
401
      })

    $target.bootstrapTooltip('show')
402
    assert.ok($('.tooltip').is('.top'), 'top positioned tooltip is dynamically positioned to top')
403
404

    $target.bootstrapTooltip('hide')
405
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
406
407
408
409

    $styles.remove()
  })

410
  QUnit.test('should position tip on bottom if the tip\'s dimension exceeds the viewport area and placement is "auto top"', function (assert) {
411
412
    var styles = '<style>'
        + 'body { padding-top: 100px; }'
413
        + '#section { height: 300px; border: 1px solid red; }'
414
415
416
417
        + 'div[rel="tooltip"] { width: 150px; border: 1px solid blue; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

418
    var $container = $('<div id="section"/>').appendTo('#qunit-fixture')
419
420
421
422
    var $target = $('<div rel="tooltip" title="tip"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'auto top',
423
        viewport: '#section'
424
425
426
      })

    $target.bootstrapTooltip('show')
427
    assert.ok($('.tooltip').is('.bottom'), 'top positioned tooltip is dynamically positioned to bottom')
428
429

    $target.bootstrapTooltip('hide')
430
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
431
432
433
434

    $styles.remove()
  })

435
  QUnit.test('should display the tip on top whenever scrollable viewport has enough room if the given placement is "auto top"', function (assert) {
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin: 200px 0 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(100)

    $target.bootstrapTooltip('show')
453
    assert.ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')
454
455

    $target.bootstrapTooltip('hide')
456
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
457
458
459
460

    $styles.remove()
  })

461
  QUnit.test('should display the tip on bottom whenever scrollable viewport doesn\'t have enough room if the given placement is "auto top"', function (assert) {
462
463
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
464
        + '.tooltip-item { padding: 200px 0 400px; width: 150px; }'
465
466
467
468
469
470
471
472
473
474
475
476
477
478
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
479
    assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
480
481

    $target.bootstrapTooltip('hide')
482
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
483
484
485
486

    $styles.remove()
  })

487
  QUnit.test('should display the tip on bottom whenever scrollable viewport has enough room if the given placement is "auto bottom"', function (assert) {
488
489
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
490
491
492
        + '.spacer { height: 400px; }'
        + '.spacer:first-child { height: 200px; }'
        + '.tooltip-item { width: 150px; }'
493
494
495
496
497
498
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
499
500
      .before('<div class="spacer"/>')
      .after('<div class="spacer"/>')
501
502
503
504
505
506
507
508
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(200)

    $target.bootstrapTooltip('show')
509
    assert.ok($('.tooltip').is('.fade.bottom.in'), 'has correct classes applied')
510
511

    $target.bootstrapTooltip('hide')
512
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
513
514
515
516

    $styles.remove()
  })

517
  QUnit.test('should display the tip on top whenever scrollable viewport doesn\'t have enough room if the given placement is "auto bottom"', function (assert) {
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
    var styles = '<style>'
        + '#scrollable-div { height: 200px; overflow: auto; }'
        + '.tooltip-item { margin-top: 400px; width: 150px; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    var $container = $('<div id="scrollable-div"/>').appendTo('#qunit-fixture')
    var $target = $('<div rel="tooltip" title="tip" class="tooltip-item">Tooltip Item</div>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom auto',
        viewport: '#scrollable-div'
      })

    $('#scrollable-div').scrollTop(400)

    $target.bootstrapTooltip('show')
535
    assert.ok($('.tooltip').is('.fade.top.in'), 'has correct classes applied')
536
537

    $target.bootstrapTooltip('hide')
538
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
539
540
541
542

    $styles.remove()
  })

543
  QUnit.test('should adjust the tip\'s top position when up against the top of the viewport', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
544
545
546
547
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
548
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
549

fat's avatar
fat committed
550
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
551
552
553
554
555
556
557
558
559
560
561
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
562
    assert.strictEqual(Math.round($container.find('.tooltip').offset().top), 12)
563

Heinrich Fenkart's avatar
Heinrich Fenkart committed
564
    $target.bootstrapTooltip('hide')
565
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
566

Heinrich Fenkart's avatar
Heinrich Fenkart committed
567
    $styles.remove()
568
569
  })

570
  QUnit.test('should adjust the tip\'s top position when up against the bottom of the viewport', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
571
572
573
574
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
575
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
576

fat's avatar
fat committed
577
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
578
579
580
581
582
583
584
585
586
    var $target = $('<a href="#" rel="tooltip" title="tip" style="bottom: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'right',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })
587

Heinrich Fenkart's avatar
Heinrich Fenkart committed
588
589
    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
590
    assert.strictEqual(Math.round($tooltip.offset().top), Math.round($(window).height() - 12 - $tooltip[0].offsetHeight))
591

Heinrich Fenkart's avatar
Heinrich Fenkart committed
592
    $target.bootstrapTooltip('hide')
593
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
594
595
596

    $container.remove()
    $styles.remove()
597
598
  })

599
  QUnit.test('should adjust the tip\'s left position when up against the left of the viewport', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
600
601
602
603
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
604
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
605

fat's avatar
fat committed
606
    var $container = $('<div/>').appendTo('#qunit-fixture')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
607
608
609
610
611
612
613
614
615
616
617
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; left: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
618
    assert.strictEqual(Math.round($container.find('.tooltip').offset().left), 12)
619

Heinrich Fenkart's avatar
Heinrich Fenkart committed
620
    $target.bootstrapTooltip('hide')
621
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
622

Heinrich Fenkart's avatar
Heinrich Fenkart committed
623
624
    $container.remove()
    $styles.remove()
625
626
  })

627
  QUnit.test('should adjust the tip\'s left position when up against the right of the viewport', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
628
629
630
631
    var styles = '<style>'
        + '.tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
632
    var $styles = $(styles).appendTo('head')
633

Heinrich Fenkart's avatar
Heinrich Fenkart committed
634
635
636
637
638
639
640
641
642
643
644
645
646
    var $container = $('<div/>').appendTo('body')
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 0px; right: 0px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: {
          selector: 'body',
          padding: 12
        }
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
647
    assert.strictEqual(Math.round($tooltip.offset().left), Math.round($(window).width() - 12 - $tooltip[0].offsetWidth))
648

Heinrich Fenkart's avatar
Heinrich Fenkart committed
649
    $target.bootstrapTooltip('hide')
650
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
651
652
653

    $container.remove()
    $styles.remove()
654
655
  })

656
  QUnit.test('should adjust the tip when up against the right of an arbitrary viewport', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
657
658
659
660
661
    var styles = '<style>'
        + '.tooltip, .tooltip .tooltip-inner { width: 200px; height: 200px; max-width: none; }'
        + '.container-viewport { position: absolute; top: 50px; left: 60px; width: 300px; height: 300px; }'
        + 'a[rel="tooltip"] { position: fixed; }'
        + '</style>'
662
    var $styles = $(styles).appendTo('head')
Heinrich Fenkart's avatar
Heinrich Fenkart committed
663
664
665
666
667
668
669
670
671
672
673

    var $container = $('<div class="container-viewport"/>').appendTo(document.body)
    var $target = $('<a href="#" rel="tooltip" title="tip" style="top: 50px; left: 350px;"/>')
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'bottom',
        viewport: '.container-viewport'
      })

    $target.bootstrapTooltip('show')
    var $tooltip = $container.find('.tooltip')
674
    assert.strictEqual(Math.round($tooltip.offset().left), Math.round(60 + $container.width() - $tooltip[0].offsetWidth))
675

Heinrich Fenkart's avatar
Heinrich Fenkart committed
676
    $target.bootstrapTooltip('hide')
677
    assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
678

Heinrich Fenkart's avatar
Heinrich Fenkart committed
679
680
    $container.remove()
    $styles.remove()
681
  })
Chris Rebert's avatar
Chris Rebert committed
682

683
  QUnit.test('should not error when trying to show an auto-placed tooltip that has been removed from the dom', function (assert) {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
684
685
686
    var passed = true
    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
Chris Rebert's avatar
Chris Rebert committed
687
      .one('show.bs.tooltip', function () {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
688
        $(this).remove()
Chris Rebert's avatar
Chris Rebert committed
689
690
691
692
      })
      .bootstrapTooltip({ placement: 'auto' })

    try {
Heinrich Fenkart's avatar
Heinrich Fenkart committed
693
694
      $tooltip.bootstrapTooltip('show')
    } catch (err) {
Chris Rebert's avatar
Chris Rebert committed
695
696
697
698
      passed = false
      console.log(err)
    }

699
    assert.ok(passed, '.tooltip(\'show\') should not throw an error if element no longer is in dom')
Chris Rebert's avatar
Chris Rebert committed
700
  })
fat's avatar
fat committed
701

702
  QUnit.test('should place tooltip on top of element', function (assert) {
703
    var done = assert.async()
fat's avatar
fat committed
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733

    var containerHTML = '<div>'
        + '<p style="margin-top: 200px">'
        + '<a href="#" title="very very very very very very very long tooltip">Hover me</a>'
        + '</p>'
        + '</div>'

    var $container = $(containerHTML)
      .css({
        position: 'absolute',
        bottom: 0,
        left: 0,
        textAlign: 'right',
        width: 300,
        height: 300
      })
      .appendTo('#qunit-fixture')

    var $trigger = $container
      .find('a')
      .css('margin-top', 200)
      .bootstrapTooltip({
        placement: 'top',
        animate: false
      })
      .bootstrapTooltip('show')

    var $tooltip = $container.find('.tooltip')

    setTimeout(function () {
734
      assert.ok(Math.round($tooltip.offset().top + $tooltip.outerHeight()) <= Math.round($trigger.offset().top))
735
      done()
fat's avatar
fat committed
736
737
738
    }, 0)
  })

739
  QUnit.test('should place tooltip inside viewport', function (assert) {
740
    var done = assert.async()
fat's avatar
fat committed
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764

    var $container = $('<div/>')
      .css({
        position: 'absolute',
        width: 200,
        height: 200,
        bottom: 0,
        left: 0
      })
      .appendTo('#qunit-fixture')

    $('<a href="#" title="Very very very very very very very very long tooltip">Hover me</a>')
      .css({
        position: 'absolute',
        top: 0,
        left: 0
      })
      .appendTo($container)
      .bootstrapTooltip({
        placement: 'top'
      })
      .bootstrapTooltip('show')

    setTimeout(function () {
765
      assert.ok($('.tooltip').offset().left >= 0)
766
      done()
fat's avatar
fat committed
767
768
769
    }, 0)
  })

770
  QUnit.test('should show tooltip if leave event hasn\'t occurred before delay expires', function (assert) {
771
    var done = assert.async()
fat's avatar
fat committed
772
773
774

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
775
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
776
777

    setTimeout(function () {
778
      assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip is not faded in')
779
    }, 100)
fat's avatar
fat committed
780
781

    setTimeout(function () {
782
      assert.ok($('.tooltip').is('.fade.in'), '200ms: tooltip is faded in')
783
      done()
784
    }, 200)
fat's avatar
fat committed
785
786
787
788

    $tooltip.trigger('mouseenter')
  })

789
  QUnit.test('should not show tooltip if leave event occurs before delay expires', function (assert) {
790
    var done = assert.async()
fat's avatar
fat committed
791
792
793

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
794
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
795
796

    setTimeout(function () {
797
      assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
798
      $tooltip.trigger('mouseout')
799
    }, 100)
fat's avatar
fat committed
800
801

    setTimeout(function () {
802
      assert.ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
803
      done()
804
    }, 200)
fat's avatar
fat committed
805
806
807
808

    $tooltip.trigger('mouseenter')
  })

809
  QUnit.test('should not hide tooltip if leave event occurs and enter event occurs within the hide delay', function (assert) {
810
    var done = assert.async()
fat's avatar
fat committed
811
812
813

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
814
      .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
fat's avatar
fat committed
815
816

    setTimeout(function () {
817
      assert.ok($('.tooltip').is('.fade.in'), '1ms: tooltip faded in')
fat's avatar
fat committed
818
819
820
      $tooltip.trigger('mouseout')

      setTimeout(function () {
821
        assert.ok($('.tooltip').is('.fade.in'), '100ms: tooltip still faded in')
fat's avatar
fat committed
822
        $tooltip.trigger('mouseenter')
823
      }, 100)
fat's avatar
fat committed
824
825

      setTimeout(function () {
826
        assert.ok($('.tooltip').is('.fade.in'), '200ms: tooltip still faded in')
827
        done()
828
      }, 200)
fat's avatar
fat committed
829
830
831
832
833
    }, 0)

    $tooltip.trigger('mouseenter')
  })

834
  QUnit.test('should not show tooltip if leave event occurs before delay expires', function (assert) {
835
    var done = assert.async()
fat's avatar
fat committed
836
837
838

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
839
      .bootstrapTooltip({ delay: 150 })
fat's avatar
fat committed
840
841

    setTimeout(function () {
842
      assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
843
      $tooltip.trigger('mouseout')
844
    }, 100)
fat's avatar
fat committed
845
846

    setTimeout(function () {
847
      assert.ok(!$('.tooltip').is('.fade.in'), '200ms: tooltip not faded in')
848
      done()
849
    }, 200)
fat's avatar
fat committed
850
851
852
853

    $tooltip.trigger('mouseenter')
  })

854
  QUnit.test('should not show tooltip if leave event occurs before delay expires, even if hide delay is 0', function (assert) {
855
    var done = assert.async()
fat's avatar
fat committed
856
857
858

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
859
      .bootstrapTooltip({ delay: { show: 150, hide: 0 }})
fat's avatar
fat committed
860
861

    setTimeout(function () {
862
      assert.ok(!$('.tooltip').is('.fade.in'), '100ms: tooltip not faded in')
fat's avatar
fat committed
863
      $tooltip.trigger('mouseout')
864
    }, 100)
fat's avatar
fat committed
865
866

    setTimeout(function () {
867
      assert.ok(!$('.tooltip').is('.fade.in'), '250ms: tooltip not faded in')
868
      done()
869
    }, 250)
fat's avatar
fat committed
870
871
872
873

    $tooltip.trigger('mouseenter')
  })

874
  QUnit.test('should wait 200ms before hiding the tooltip', function (assert) {
875
    var done = assert.async()
fat's avatar
fat committed
876
877
878

    var $tooltip = $('<a href="#" rel="tooltip" title="Another tooltip"/>')
      .appendTo('#qunit-fixture')
879
      .bootstrapTooltip({ delay: { show: 0, hide: 150 }})
fat's avatar
fat committed
880
881

    setTimeout(function () {
882
      assert.ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '1ms: tooltip faded in')
fat's avatar
fat committed
883
884
885
886

      $tooltip.trigger('mouseout')

      setTimeout(function () {
887
        assert.ok($tooltip.data('bs.tooltip').$tip.is('.fade.in'), '100ms: tooltip still faded in')
888
      }, 100)
fat's avatar
fat committed
889
890

      setTimeout(function () {
891
        assert.ok(!$tooltip.data('bs.tooltip').$tip.is('.in'), '200ms: tooltip removed')
892
        done()
893
      }, 200)
fat's avatar
fat committed
894
895
896
897
898
899

    }, 0)

    $tooltip.trigger('mouseenter')
  })

900
  QUnit.test('should correctly position tooltips on SVG elements', function (assert) {
901
902
    if (!window.SVGElement) {
      // Skip IE8 since it doesn't support SVG
903
      assert.expect(0)
904
905
906
      return
    }

907
    var done = assert.async()
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; }'
        + '.tooltip .tooltip-inner { width: 24px; height: 24px; font-family: Helvetica; }'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append(
        '<div style="position: fixed; top: 0; left: 0;">'
      + '  <svg width="200" height="200">'
      + '    <circle cx="100" cy="100" r="10" title="m" id="theCircle" />'
      + '  </svg>'
      + '</div>')
    var $circle = $('#theCircle')

    $circle
      .on('shown.bs.tooltip', function () {
        var offset = $('.tooltip').offset()
        $styles.remove()
928
        assert.ok(Math.abs(offset.left - 88) <= 1, 'tooltip has correct horizontal location')
929
        $circle.bootstrapTooltip('hide')
930
        assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
931
        done()
932
933
934
935
936
937
      })
      .bootstrapTooltip({ container: 'body', placement: 'top', trigger: 'manual' })

    $circle.bootstrapTooltip('show')
  })

938
  QUnit.test('should correctly determine auto placement based on container rather than parent', function (assert) {
939
    var done = assert.async()
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960

    var styles = '<style>'
        + '.tooltip, .tooltip *, .tooltip *:before, .tooltip *:after { box-sizing: border-box; }'
        + '.tooltip { position: absolute; display: block; font-size: 12px; line-height: 1.4; }'
        + '.tooltip .tooltip-inner { max-width: 200px; padding: 3px 8px; font-family: Helvetica; text-align: center; }'
        + '#trigger-parent {'
        + '  position: fixed;'
        + '  top: 100px;'
        + '  right: 17px;'
        + '}'
        + '</style>'
    var $styles = $(styles).appendTo('head')

    $('#qunit-fixture').append('<span id="trigger-parent"><a id="tt-trigger" title="If a_larger_text is written here, it won\'t fit using older broken version of BS">HOVER OVER ME</a></span>')
    var $trigger = $('#tt-trigger')

    $trigger
      .on('shown.bs.tooltip', function () {
        var $tip = $('.tooltip-inner')
        var tipXrightEdge = $tip.offset().left + $tip.width()
        var triggerXleftEdge = $trigger.offset().left
961
        assert.ok(tipXrightEdge < triggerXleftEdge, 'tooltip with auto left placement, when near the right edge of the viewport, gets left placement')
962
963
964
965
966
        $trigger.bootstrapTooltip('hide')
      })
      .on('hidden.bs.tooltip', function () {
        $styles.remove()
        $(this).remove()
967
        assert.strictEqual($('.tooltip').length, 0, 'tooltip removed from dom')
968
        done()
969
970
971
972
973
974
975
976
977
978
      })
      .bootstrapTooltip({
        container: 'body',
        placement: 'auto left',
        trigger: 'manual'
      })

    $trigger.bootstrapTooltip('show')
  })

979
  QUnit.test('should not reload the tooltip on subsequent mouseenter events', function (assert) {
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
    var titleHtml = function () {
      var uid = $.fn.bootstrapTooltip.Constructor.prototype.getUID('tooltip')
      return '<p id="tt-content">' + uid + '</p><p>' + uid + '</p><p>' + uid + '</p>'
    }

    var $tooltip = $('<span id="tt-outer" rel="tooltip" data-trigger="hover" data-placement="top">some text</span>')
      .appendTo('#qunit-fixture')

    $tooltip.bootstrapTooltip({
      html: true,
      animation: false,
      trigger: 'hover',
      delay: { show: 0, hide: 500 },
      container: $tooltip,
      title: titleHtml
    })

    $('#tt-outer').trigger('mouseenter')

    var currentUid = $('#tt-content').text()

For faster browsing, not all history is shown. View entire blame