mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 16:52:43 +00:00 
			
		
		
		
	LibWeb: Rename CSSParser => DeprecatedCSSParser
This commit is contained in:
		
							parent
							
								
									078f0a5c67
								
							
						
					
					
						commit
						16cde3f14a
					
				
					 12 changed files with 11 additions and 12 deletions
				
			
		|  | @ -47,7 +47,7 @@ | ||||||
| #include <LibGUI/ToolBarContainer.h> | #include <LibGUI/ToolBarContainer.h> | ||||||
| #include <LibGUI/Window.h> | #include <LibGUI/Window.h> | ||||||
| #include <LibJS/Interpreter.h> | #include <LibJS/Interpreter.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/DOM/Element.h> | #include <LibWeb/DOM/Element.h> | ||||||
| #include <LibWeb/DOMTreeModel.h> | #include <LibWeb/DOMTreeModel.h> | ||||||
| #include <LibWeb/Dump.h> | #include <LibWeb/Dump.h> | ||||||
|  |  | ||||||
|  | @ -15,7 +15,7 @@ set(SOURCES | ||||||
|     CSS/CSSStyleSheet.cpp |     CSS/CSSStyleSheet.cpp | ||||||
|     CSS/DefaultStyleSheetSource.cpp |     CSS/DefaultStyleSheetSource.cpp | ||||||
|     CSS/Length.cpp |     CSS/Length.cpp | ||||||
|     CSS/Parser/CSSParser.cpp |     CSS/Parser/DeprecatedCSSParser.cpp | ||||||
|     CSS/Parser/Token.cpp |     CSS/Parser/Token.cpp | ||||||
|     CSS/Parser/Tokenizer.cpp |     CSS/Parser/Tokenizer.cpp | ||||||
|     CSS/PropertyID.cpp |     CSS/PropertyID.cpp | ||||||
|  |  | ||||||
|  | @ -28,9 +28,8 @@ | ||||||
| #include <LibWeb/CSS/CSSImportRule.h> | #include <LibWeb/CSS/CSSImportRule.h> | ||||||
| #include <LibWeb/CSS/CSSRule.h> | #include <LibWeb/CSS/CSSRule.h> | ||||||
| #include <LibWeb/CSS/CSSStyleRule.h> | #include <LibWeb/CSS/CSSStyleRule.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/PropertyID.h> | #include <LibWeb/CSS/PropertyID.h> | ||||||
| #include <LibWeb/CSS/StyleSheet.h> |  | ||||||
| #include <LibWeb/DOM/Document.h> | #include <LibWeb/DOM/Document.h> | ||||||
| #include <ctype.h> | #include <ctype.h> | ||||||
| #include <stdlib.h> | #include <stdlib.h> | ||||||
|  | @ -27,7 +27,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/QuickSort.h> | #include <AK/QuickSort.h> | ||||||
| #include <LibWeb/CSS/CSSStyleRule.h> | #include <LibWeb/CSS/CSSStyleRule.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/SelectorEngine.h> | #include <LibWeb/CSS/SelectorEngine.h> | ||||||
| #include <LibWeb/CSS/StyleResolver.h> | #include <LibWeb/CSS/StyleResolver.h> | ||||||
| #include <LibWeb/CSS/StyleSheet.h> | #include <LibWeb/CSS/StyleSheet.h> | ||||||
|  |  | ||||||
|  | @ -26,7 +26,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/AnyOf.h> | #include <AK/AnyOf.h> | ||||||
| #include <AK/StringBuilder.h> | #include <AK/StringBuilder.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/PropertyID.h> | #include <LibWeb/CSS/PropertyID.h> | ||||||
| #include <LibWeb/CSS/StyleInvalidator.h> | #include <LibWeb/CSS/StyleInvalidator.h> | ||||||
| #include <LibWeb/CSS/StyleResolver.h> | #include <LibWeb/CSS/StyleResolver.h> | ||||||
|  |  | ||||||
|  | @ -24,7 +24,7 @@ | ||||||
|  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/SelectorEngine.h> | #include <LibWeb/CSS/SelectorEngine.h> | ||||||
| #include <LibWeb/DOM/ParentNode.h> | #include <LibWeb/DOM/ParentNode.h> | ||||||
| #include <LibWeb/Dump.h> | #include <LibWeb/Dump.h> | ||||||
|  |  | ||||||
|  | @ -25,7 +25,7 @@ | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <LibGfx/Bitmap.h> | #include <LibGfx/Bitmap.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/StyleResolver.h> | #include <LibWeb/CSS/StyleResolver.h> | ||||||
| #include <LibWeb/DOM/Document.h> | #include <LibWeb/DOM/Document.h> | ||||||
| #include <LibWeb/DOM/Event.h> | #include <LibWeb/DOM/Event.h> | ||||||
|  |  | ||||||
|  | @ -27,7 +27,7 @@ | ||||||
| 
 | 
 | ||||||
| #include <AK/ByteBuffer.h> | #include <AK/ByteBuffer.h> | ||||||
| #include <AK/URL.h> | #include <AK/URL.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/DOM/Document.h> | #include <LibWeb/DOM/Document.h> | ||||||
| #include <LibWeb/HTML/HTMLLinkElement.h> | #include <LibWeb/HTML/HTMLLinkElement.h> | ||||||
| #include <LibWeb/Loader/ResourceLoader.h> | #include <LibWeb/Loader/ResourceLoader.h> | ||||||
|  |  | ||||||
|  | @ -24,7 +24,7 @@ | ||||||
|  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/HTML/HTMLTableCellElement.h> | #include <LibWeb/HTML/HTMLTableCellElement.h> | ||||||
| 
 | 
 | ||||||
| namespace Web::HTML { | namespace Web::HTML { | ||||||
|  |  | ||||||
|  | @ -24,7 +24,7 @@ | ||||||
|  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||||||
|  */ |  */ | ||||||
| 
 | 
 | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/HTML/HTMLTableElement.h> | #include <LibWeb/HTML/HTMLTableElement.h> | ||||||
| 
 | 
 | ||||||
| namespace Web::HTML { | namespace Web::HTML { | ||||||
|  |  | ||||||
|  | @ -27,7 +27,7 @@ | ||||||
| #include <AK/Debug.h> | #include <AK/Debug.h> | ||||||
| #include <AK/URL.h> | #include <AK/URL.h> | ||||||
| #include <LibWeb/CSS/CSSImportRule.h> | #include <LibWeb/CSS/CSSImportRule.h> | ||||||
| #include <LibWeb/CSS/Parser/CSSParser.h> | #include <LibWeb/CSS/Parser/DeprecatedCSSParser.h> | ||||||
| #include <LibWeb/CSS/StyleSheet.h> | #include <LibWeb/CSS/StyleSheet.h> | ||||||
| #include <LibWeb/DOM/Element.h> | #include <LibWeb/DOM/Element.h> | ||||||
| #include <LibWeb/Loader/CSSLoader.h> | #include <LibWeb/Loader/CSSLoader.h> | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Andreas Kling
						Andreas Kling