mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 14:02:46 +00:00 
			
		
		
		
	 de53eb825a
			
		
	
	
		de53eb825a
		
	
	
	
	
		
			
			From the HTML spec:
    Modulo platform conventions, it is suggested that the following
    elements should be considered as focusable areas and be sequentially
    focusable:
      ...
    - button elements
    - select elements
    - textarea elements
      ...
Also add a spec link to the existing HTMLAnchorElement::is_focusable().
Note that this still doesn't allow triggering keyboard-focused buttons,
checkboxes, or radio buttons - we don't seem to run the expected
activation behavior for any of them.
		
	
			
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <LibWeb/HTML/HTMLElement.h>
 | |
| #include <LibWeb/HTML/HTMLHyperlinkElementUtils.h>
 | |
| 
 | |
| namespace Web::HTML {
 | |
| 
 | |
| class HTMLAnchorElement final
 | |
|     : public HTMLElement
 | |
|     , public HTMLHyperlinkElementUtils {
 | |
| public:
 | |
|     using WrapperType = Bindings::HTMLAnchorElementWrapper;
 | |
| 
 | |
|     HTMLAnchorElement(DOM::Document&, DOM::QualifiedName);
 | |
|     virtual ~HTMLAnchorElement() override;
 | |
| 
 | |
|     String target() const { return attribute(HTML::AttributeNames::target); }
 | |
|     String download() const { return attribute(HTML::AttributeNames::download); }
 | |
| 
 | |
|     // ^EventTarget
 | |
|     // https://html.spec.whatwg.org/multipage/interaction.html#the-tabindex-attribute:the-a-element
 | |
|     virtual bool is_focusable() const override { return has_attribute(HTML::AttributeNames::href); }
 | |
| 
 | |
|     virtual bool is_html_anchor_element() const override { return true; }
 | |
| 
 | |
| private:
 | |
|     void run_activation_behavior(Web::DOM::Event const&);
 | |
| 
 | |
|     // ^DOM::Element
 | |
|     virtual void parse_attribute(FlyString const& name, String const& value) override;
 | |
| 
 | |
|     // ^HTML::HTMLHyperlinkElementUtils
 | |
|     virtual DOM::Document& hyperlink_element_utils_document() override { return document(); }
 | |
|     virtual String hyperlink_element_utils_href() const override;
 | |
|     virtual void set_hyperlink_element_utils_href(String) override;
 | |
|     virtual bool hyperlink_element_utils_is_html_anchor_element() const final { return true; }
 | |
|     virtual bool hyperlink_element_utils_is_connected() const final { return is_connected(); }
 | |
|     virtual String hyperlink_element_utils_target() const final { return target(); }
 | |
|     virtual void hyperlink_element_utils_queue_an_element_task(HTML::Task::Source source, Function<void()> steps) override
 | |
|     {
 | |
|         queue_an_element_task(source, move(steps));
 | |
|     }
 | |
| };
 | |
| 
 | |
| }
 | |
| 
 | |
| namespace Web::DOM {
 | |
| template<>
 | |
| inline bool Node::fast_is<HTML::HTMLAnchorElement>() const { return is_html_anchor_element(); }
 | |
| }
 |