[Skip navigation links]

Site Report

This tab shows accessibility issues, indicating problems for older users, people with disabilities or accessibility needs. Automated testing cannot detect all accessibility issues, so should be used alongside human testing.

LevelWCAG 2.2Section 508 - 2017Key
ALevel A, 2 issuesLevel A, 2 issuesCritical Pages with level A issues are unusable for some people
AALevel AA, 3 issuesLevel AA, 3 issuesVery Important Pages with level AA issues are very difficult to use
AAALevel AAA, 2 issuesLess Important Pages with level AAA issues can be difficult to use
PriorityDescription and URLGuideline and Line NumberCount

Level A

3 issues on 2 pages

CriticalHeadings should not be empty. ARIA 5.2.8 1 pages
Add visible text to the heading, or alt text if the heading contains an image. Screen readers read out page headings, allowing users to quickly skip to a section, but some older screen readers do not ignore empty headings.
<h3 class='pagetitle l'></h3>
Line 252

https://vipdubaidivas.com/

CriticalHTML form control has no accessible name. WCAG 2.2 A F68 Section 508 (2017) A F68 1 pages

A label (or name) linked to the control allows screen readers to voice the label correctly when reading the control. To add a label do one of the following:

  • Use a label element with the for attribute set to the ID of the form control
  • Wrap a label element around the form control
  • Add a title attribute
  • Add an aria-label attribute
  • Add an aria-labelledby attribute
4.1.2
<select name='gender' class='select2'><option value='1'>Female</option></select>
Line 979

https://vipdubaidivas.com/all-escorts/

CriticalThis button element contains no text and has no accessible name. WCAG 2.2 A 4.1.2 Section 508 (2017) A 4.1.2 1 pages

A programmatically determined name allows screen readers to tell users what the control does. To add a name do one of the following:

  • Add text between the button start and end tags
  • Add a title attribute
  • Add an aria-label attribute
  • Add an aria-labelledby attribute
  • Add an img alt attribute if the button contains an img element
<button type='button' role='presentation' class='owl-prev disabled'>...</button>
Line 242
<button type='button' role='presentation' class='owl-next'>...</button>
Line 242

https://vipdubaidivas.com/

Level AA

3 issues on 2 pages

Very ImportantDo not use the meta viewport tag to disable zoom. WCAG 2.2 AA 1.4.4 Section 508 (2017) AA 1.4.4 2 pages
Setting user-scalable=no or maximum-scale to less than 2.0 prevents zooming small text to make it readable. Note that iOS 10+ ignores this setting.
<meta name='viewport' content='width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, target-densityDpi=device-dpi, user-scalable=no'>
Line 5

https://vipdubaidivas.com/

<meta name='viewport' content='width=device-width, height=device-height, initial-scale=1.0, maximum-scale=1.0, target-densityDpi=device-dpi, user-scalable=no'>
Line 5

https://vipdubaidivas.com/all-escorts/

Very ImportantEnsure that text and background colors have enough contrast. WCAG 2.2 AA 1.4.3 Section 508 (2017) AA 1.4.3 2 pages

Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.

  • The contrast ratio should be 3.0 or more for 18 point text, or larger
  • The contrast ratio should be 3.0 or more for 14 point bold text, or larger
  • The contrast ratio should be 4.5 or more for all other text
1.4.6
The text color to background color contrast ratio after composition is:
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 18ptfont-weight: 700
<h2 class='wp-block-heading'>Trusted Dubai ... in Dubai @ 800 AED</h2>
Line 1152
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Greetings, Gentlemen, Welcome to ... to you at any time in the city.</p>
Line 1154
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Looking to connect with an ... that feels effortlessly natural.</p>
Line 1156
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 14.04ptfont-weight: 700
<h3 class='wp-block-heading'>Your Private Fun ... is One Call Away</h3>
Line 1158
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Our VIP Escorts Agency delivers ... join you for a drink or a meal.</p>
Line 1160

https://vipdubaidivas.com/

The text color to background color contrast ratio after composition is:
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 18ptfont-weight: 700
<h2 class='wp-block-heading'>Trusted Dubai ... in Dubai @ 800 AED</h2>
Line 1019
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Greetings, Gentlemen, Welcome to ... to you at any time in the city.</p>
Line 1021
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Looking to connect with an ... that feels effortlessly natural.</p>
Line 1023
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 14.04ptfont-weight: 700
<h3 class='wp-block-heading'>Your Private Fun ... is One Call Away</h3>
Line 1025
2.46 with color: rgb(255,255,255)background: rgb(255,132,0)
font-size: 12ptfont-weight: 400
<p>Our VIP Escorts Agency delivers ... join you for a drink or a meal.</p>
Line 1027

https://vipdubaidivas.com/all-escorts/

Very ImportantThe CSS outline or border style on this element makes it difficult or impossible to see the link focus outline. WCAG 2.2 AA F78 Section 508 (2017) AA F78 2 pages
Do not remove the default outline style, and change any border styles to avoid obscuring the focus outline around focusable elements. See :focus-visible for more information.

Using a border or outline style that obscures the focus ring causes problems for keyboard-only users in:

  • Chrome (obscures the focus indicator on links, buttons, dropdowns and range controls)
  • Firefox (obscures the focus indicator on links)
2.4.7
:focus has outline: invert none 0px
<a href='.../' class='adv'><span class='icon icon-search'></span>...h</a>
Line 1137
:focus has outline: invert none 0px
<a class='page-numbers' href='.../'>2</a>
Line 1026
:focus has outline: invert none 0px
<a class='next page-numbers' href='.../'>Next</a>
Line 1027
:focus has outline: invert none 0px
<a href='.../' class='girlimg' title='Jadyn'>...</a>
Line 133
:focus has outline: invert none 0px
<a href='.../' class='girlimg' title='Sydnee'>...</a>
Line 144

https://vipdubaidivas.com/

:focus has outline: invert none 0px
<a href='.../' class='adv'><span class='icon icon-search'></span>...h</a>
Line 1004
:focus has outline: invert none 0px
<a class='page-numbers' href='.../'>2</a>
Line 893
:focus has outline: invert none 0px
<a class='next page-numbers' href='.../'>Next</a>
Line 894
:focus has outline: invert none 0px
<a class='pinkbutton rad25' href='.../'>Female</a>
Line 122
:focus has outline: invert none 0px
<a class='pinkbutton rad25' href='.../'>Premium</a>
Line 123

https://vipdubaidivas.com/all-escorts/

Level AAA

2 issues on 2 pages

ImportantClickable targets must be at least 44 by 44 CSS pixels. WCAG 2.2 2.5.5 2 pages
233 x 24 pixels
<a href='.../' title='Talia'><div class='model-info'>...</div>...</a>
Line 780

https://vipdubaidivas.com/

233 x 24 pixels
<a href='.../' title='Talia'><div class='model-info'>...</div>...</a>
Line 647

https://vipdubaidivas.com/all-escorts/

ImportantEnsure that text and background colors have a 7:1 contrast ratio. WCAG 2.2 AAA 1.4.6 2 pages

Some users find it hard to read light gray text on a white background, dark gray text on a black background and white text on a red background.

  • The contrast ratio should be 4.5 or more for 18 point text, or larger
  • The contrast ratio should be 4.5 or more for 14 point bold text, or larger
  • The contrast ratio should be 7.0 or more for all other text
The text color to background color contrast ratio after composition is:
4.79 with color: rgb(224,0,108)background: linear-gradient(to bottom , rgb(255,255,255) 0% , rgb(239,248,255) 100%)
font-size: 12ptfont-weight: 400
<span class='page-numbers current' aria-current='page'>1</span>
Line 1025

https://vipdubaidivas.com/

The text color to background color contrast ratio after composition is:
4.79 with color: rgb(224,0,108)background: linear-gradient(to bottom , rgb(255,255,255) 0% , rgb(239,248,255) 100%)
font-size: 12ptfont-weight: 400
<span class='page-numbers current' aria-current='page'>1</span>
Line 892

https://vipdubaidivas.com/all-escorts/

Informative

These messages are for information only and do not indicate errors or conformance problems

Informationrole is ignored on this element. ARIA Role Conflict 1 pages
The presentational roles role=presentation and role=none are ignored when applied to interactive elements like button and elements with global aria attributes like aria-label. This also happens when img alt='' is used with global aria attributes.
<button type='button' role='presentation' class='owl-prev disabled'>...</button>
Line 242
<button type='button' role='presentation' class='owl-next'>...</button>
Line 242

https://vipdubaidivas.com/

Expand all 9 issues