░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/selenium/a11y_and_i18n
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: high_contrast_spec.rb
# frozen_string_literal: true # # Copyright (C) 2018 - present Instructure, Inc. # # This file is part of Canvas. # # Canvas is free software: you can redistribute it and/or modify it under # the terms of the GNU Affero General Public License as published by the Free # Software Foundation, version 3 of the License. # # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more # details. # # You should have received a copy of the GNU Affero General Public License along # with this program. If not, see <http://www.gnu.org/licenses/>. require_relative "../common" describe "high_contrast" do include_context "in-process server selenium tests" context "InstUI components" do before { course_with_teacher_logged_in(active_all: true) } context "WITHOUT high_contrast turned on" do it "meets 3.5:1 contrast for buttons" do get "/courses/#{@course.id}/announcements" # just using the "Add announcement" button on the announcemnts page # as a random example of an instUI component. As of InstUI 7 the # theme gets applied to a <span> inside the <a> so we have to dig # for that. childspan = flnpt("Add announcement").find_element(tag_name: "span") expect(childspan).to meet_contrast_ratio(3.5) end end context "WITH high_contrast turned on" do before { @user.enable_feature!(:high_contrast) } it "meets 4.5:1 contrast for buttons" do get "/courses/#{@course.id}/announcements" childspan = flnpt("Add announcement").find_element(tag_name: "span") expect(childspan).to meet_contrast_ratio(4.5) end end end end
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 high_contrast_spec.rb
RB
1.8 KB
2023-09-24 03:36
EDIT
📄 i18n_js_spec.rb
RB
2.1 KB
2023-09-24 03:36
EDIT
📄 localized-timezone-lists_spec.rb
RB
1.6 KB
2023-09-24 03:39
EDIT